Skip to content

bump node version in CI #44

bump node version in CI

bump node version in CI #44

Workflow file for this run

name: Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo under GH workspace
uses: actions/checkout@v2
- name: Use nodejs
uses: actions/setup-node@v2
with:
node-version: '20'
cache: 'npm'
- name: Install deps without updating package-lock.json
run: npm i --no-save
- name: Run the CI build
run: npm run ci