mirror of
https://github.com/actions/setup-node.git
synced 2025-04-23 20:10:48 +00:00
18 lines
301 B
YAML
18 lines
301 B
YAML
on: push
|
|
jobs:
|
|
|
|
build:
|
|
runs-on:
|
|
pool: ${{ matrix.operating-system }}
|
|
strategy:
|
|
matrix:
|
|
operating-system: [Linux, macOS, Windows]
|
|
actions:
|
|
- name: npm ci
|
|
run: npm ci
|
|
|
|
- name: Lint
|
|
run: npm run format-check
|
|
|
|
- name: npm test
|
|
run: npm test
|