Skip to content

Update GitHub workflow badge link #32

Update GitHub workflow badge link

Update GitHub workflow badge link #32

Workflow file for this run

name: 'Build & Test'
on: [push, pull_request]
jobs:
build:
name: Build (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install
run: npm ci --ignore-scripts
- name: Lint
run: npm run lint
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install
run: npm ci
- name: Test
run: npm run test