Skip to content

Update CI workflow to run on pull requets #1

Update CI workflow to run on pull requets

Update CI workflow to run on pull requets #1

Workflow file for this run

name: Node CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, lts/*]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm ci
npm run lint
npm run build
npm test
env:
CI: true