Skip to content

Run npm tests on pull requests for better CI coverage #1

Run npm tests on pull requests for better CI coverage

Run npm tests on pull requests for better CI coverage #1

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "*"
cache: "npm"
- run: npm ci
- run: npm run lint
- run: npm test