Skip to content

Commit

Permalink
Setup node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kishankg committed Nov 11, 2020
1 parent 86b0a34 commit e33edb6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions .github/workflows/matrix.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Matrix

on: push

jobs:
node-version:
runs-on: ubuntu-latest
steps:
- name: Log node version
run: node -v
- uses: actions/setup-node@v1
with:
node-version: '6'
- name: Log updated node version
run: node -v
2 changes: 1 addition & 1 deletion .github/workflows/simple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- name: echo a string
run: echo "Hello World"

continue-on-error: true
- name: multiline script
run: |
node -v
Expand Down

0 comments on commit e33edb6

Please sign in to comment.