Skip to content

Run CI on every branch and PR #28

Run CI on every branch and PR

Run CI on every branch and PR #28

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
build:
strategy:
matrix:
node-version: ['20.x']
os: ['ubuntu-22.04']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run test:cov