Skip to content

chore: update nodejs version to v20 and packages #54

chore: update nodejs version to v20 and packages

chore: update nodejs version to v20 and packages #54

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: 20.9.0
- run: npm ci
- run: npm run build
- run: npm run lint
- run: npm run format:check
- run: npm test
cypress-run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cypress run
uses: cypress-io/github-action@v5
env:
PORT: 3000
with:
build: npm run build
start: npm start