Skip to content

Fix GitHub workflow badges #1

Fix GitHub workflow badges

Fix GitHub workflow badges #1

Workflow file for this run

name: 'Build'
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
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: ES Check
run: npm run escheck