Skip to content

Merge pull request #28 from rpearce/chore/v1.0.1 #61

Merge pull request #28 from rpearce/chore/v1.0.1

Merge pull request #28 from rpearce/chore/v1.0.1 #61

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 --legacy-peer-deps
- name: Run the CI build
run: npm run ci