Skip to content

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

chore(deps): update node.js to v20

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

Workflow file for this run

name: client.build
on:
push:
branches: [ dev ]
paths:
- 'client/**'
pull_request:
branches: [ dev ]
paths:
- 'client/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: use node.js
uses: actions/setup-node@v3
with:
node-version: '19.x'
- name: install dependencies
run: npm ci
working-directory: client
- name: lint
run: npm run lint
working-directory: client
- name: build
run: npm run build
working-directory: client