mirror of
https://github.com/actions/setup-node
synced 2025-04-17 13:43:12 +00:00
19 lines
298 B
YAML
19 lines
298 B
YAML
on: push
|
|
jobs:
|
|
|
|
build:
|
|
queue: ${{ matrix.operating-system }}
|
|
strategy:
|
|
matrix:
|
|
operating-system: [Linux, macOS, Windows]
|
|
actions:
|
|
- name: npm install
|
|
run: npm install
|
|
|
|
- name: Lint
|
|
run: npm run format-check
|
|
|
|
|
|
- name: npm test
|
|
run: npm test
|