Skip to content

chore(deps): update node.js to v20 #2492

chore(deps): update node.js to v20

chore(deps): update node.js to v20 #2492

Workflow file for this run

name: test
on:
- push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16]
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
env:
NODE_ENV: production
- name: Lint
run: npm run lint
- name: Test
run: npm run test