mirror of
https://github.com/actions/setup-node.git
synced 2025-04-23 20:10:48 +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
|
@ -1,11 +1,12 @@
|
||||||
on: push
|
name: Main workflow
|
||||||
|
on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
run:
|
||||||
runs-on:
|
name: Run
|
||||||
pool: ${{ matrix.operating-system }}
|
runs-on: ${{ matrix.operating-system }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
operating-system: [Linux, macOS, Windows]
|
operating-system: [ubuntu-latest, windows-latest]
|
||||||
actions:
|
actions:
|
||||||
- name: Set Node.js 10.x
|
- name: Set Node.js 10.x
|
||||||
uses: bryanmacfarlane/node-config@master
|
uses: bryanmacfarlane/node-config@master
|
Loading…
Add table
Reference in a new issue