Skip to content

Workflow file for this run

name: Node.js CI
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 17.x
uses: actions/setup-node@v2
with:
node-version: 17.x
cache: 'npm'
- run: npm ci
- run: npm test