Skip to content

chore: update all dev deps #53

chore: update all dev deps

chore: update all dev deps #53

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