Skip to content

Upgrade node version #127

Upgrade node version

Upgrade node version #127

Workflow file for this run

name: Lint
on:
- push
- pull_request
jobs:
deploy:
name: Lint files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20"
cache: yarn
- run: yarn install --immutable
# require all lints to pass without warnings and files to be formatted well
- run: yarn lint-ci
- run: yarn prettier --check ./src
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "20"
cache: yarn
- run: yarn install --immutable
- run: yarn test-ci