Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test CI #33

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

name: Test
on:
push:
Expand All @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v1
- uses: dcodeIO/setup-node-nvm@master
with:
node-version: current
node-version: latest
- name: Test
run: |
cd game-of-life
Expand All @@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v1
- uses: dcodeIO/setup-node-nvm@master
with:
node-version: current
node-version: latest
- name: Test
run: |
cd i64
Expand All @@ -39,7 +39,7 @@ jobs:
- uses: actions/checkout@v1
- uses: dcodeIO/setup-node-nvm@master
with:
node-version: current
node-version: latest
- name: Test
run: |
cd interference
Expand All @@ -51,7 +51,7 @@ jobs:
- uses: actions/checkout@v1
- uses: dcodeIO/setup-node-nvm@master
with:
node-version: current
node-version: latest
- name: Test
run: |
cd libm
Expand All @@ -64,7 +64,7 @@ jobs:
- uses: actions/checkout@v1
- uses: dcodeIO/setup-node-nvm@master
with:
node-version: current
node-version: latest
- name: Test
run: |
cd loader
Expand All @@ -77,7 +77,7 @@ jobs:
- uses: actions/checkout@v1
- uses: dcodeIO/setup-node-nvm@master
with:
node-version: current
node-version: latest
- name: Test
run: |
cd mandelbrot
Expand All @@ -89,7 +89,7 @@ jobs:
- uses: actions/checkout@v1
- uses: dcodeIO/setup-node-nvm@master
with:
node-version: current
node-version: latest
- name: Test
run: |
cd n-body
Expand All @@ -102,7 +102,7 @@ jobs:
- uses: actions/checkout@v1
- uses: dcodeIO/setup-node-nvm@master
with:
node-version: current
node-version: latest
- name: Test
run: |
cd transform
Expand All @@ -114,7 +114,7 @@ jobs:
- uses: actions/checkout@v1
- uses: dcodeIO/setup-node-nvm@master
with:
node-version: current
node-version: latest
- name: Test
run: |
cd parse
Expand Down