Skip to content

⬆️ Update lint and Node #23

⬆️ Update lint and Node

⬆️ Update lint and Node #23

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
strategy:
matrix:
node-version: [18, 20]
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm i --ignore-scripts
- name: Run tests
run: npm run lint:check
- name: Run tests
run: npm run prettier:check