mirror of
https://github.com/actions/setup-node.git
synced 2025-04-23 20:10:48 +00:00
17 lines
299 B
YAML
17 lines
299 B
YAML
on: push
|
|
jobs:
|
|
|
|
build:
|
|
runs-on: ${{ 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
|