mirror of
https://github.com/actions/setup-node
synced 2025-04-18 06:03:13 +00:00
19 lines
332 B
YAML
19 lines
332 B
YAML
version: 1
|
|
on: push
|
|
jobs:
|
|
|
|
build:
|
|
runs-on: ${{ matrix.operating-system }}
|
|
strategy:
|
|
matrix:
|
|
operating-system: [ubuntu-latest, macOS-latest, windows-latest]
|
|
actions:
|
|
- name: npm install
|
|
run: npm install
|
|
|
|
- name: Lint
|
|
run: npm run format-check
|
|
|
|
|
|
- name: npm test
|
|
run: npm test |