Skip to content

Update Node.js to v20 #4359

Update Node.js to v20

Update Node.js to v20 #4359

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
ci:
if: ${{ !startsWith(github.event.head_commit.message, 'v') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2.4.0
with:
version: 6
- uses: actions/setup-node@v2
with:
node-version: 16
cache: pnpm
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: pnpm install
- name: Check formatting
run: pnpm prettier:check-all
- name: Lint
run: pnpm eslint:lint-all
- name: Test
run: pnpm test
- name: Build
run: pnpm build