Skip to content

fix(ci): node 19 -> 20 in lint #234

fix(ci): node 19 -> 20 in lint

fix(ci): node 19 -> 20 in lint #234

Workflow file for this run

name: Lint
on:
push:
branches:
- master
pull_request:
env:
FORCE_COLOR: 2
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install dependencies
uses: bahmutov/npm-install@v1
with:
useLockFile: false
install-command: yarn --silent
- name: Run linters
run: yarn lint