mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-06-08 05:01:11 +00:00
Try adding v2 workflow (#13)
* Try adding v2 workflow * Remove version * Use legacy action until this is public * Remove legacy workflow
This commit is contained in:
parent
b4ae196409
commit
d2b505129d
1 changed files with 6 additions and 5 deletions
25
.github/workflows/workflow.yml
vendored
Normal file
25
.github/workflows/workflow.yml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
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: bryanmacfarlane/node-config@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
Add a link
Reference in a new issue