mirror of
https://github.com/actions/setup-node.git
synced 2025-04-24 20:22:13 +00:00
Try adding v2 workflow
This commit is contained in:
parent
b4ae196409
commit
e93d8fd1dc
1 changed files with 27 additions and 0 deletions
27
.github/workflows/workflow.yml
vendored
Normal file
27
.github/workflows/workflow.yml
vendored
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
version: 1.0
|
||||||
|
name: Main workflow
|
||||||
|
on: [push]
|
||||||
|
jobs:
|
||||||
|
|
||||||
|
run:
|
||||||
|
name: Run
|
||||||
|
runs-on: ${{ matrix.operating-system }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
operating-system: [ubuntu-latest, windows-latest]
|
||||||
|
actions:
|
||||||
|
- name: Set Node.js 10.x
|
||||||
|
uses: actions/setup-node@master
|
||||||
|
with:
|
||||||
|
version: 10.x
|
||||||
|
|
||||||
|
- name: npm install
|
||||||
|
# Explicitly uninstall husky so that we avoid issues with git hooks/node versioning.
|
||||||
|
# Should switch to clean checkout instead when supported.
|
||||||
|
run: npm prune --production && npm install && npm uninstall husky
|
||||||
|
|
||||||
|
- name: Lint
|
||||||
|
run: npm run format-check
|
||||||
|
|
||||||
|
- name: npm test
|
||||||
|
run: npm test
|
Loading…
Add table
Reference in a new issue