Skip to content

chore(project): upgrade to node 20 (#3809) #44

chore(project): upgrade to node 20 (#3809)

chore(project): upgrade to node 20 (#3809) #44

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 20.x
uses: actions/[email protected]
with:
node-version: '20.x'
- name: Install dependencies
run: yarn install --immutable
- name: Check formatting of project files
run: yarn format:check
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 20.x
uses: actions/[email protected]
with:
node-version: '20.x'
- name: Install dependencies
run: yarn install --immutable
- name: Lint JavaScript files
run: yarn lint:js