We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 86347f3 + 07caa9d commit 33a61e5Copy full SHA for 33a61e5
.github/workflows/test.yml
@@ -1,4 +1,4 @@
1
-name: "test-local"
+name: "units-test"
2
on:
3
pull_request:
4
push:
@@ -7,13 +7,19 @@ on:
7
- 'releases/*'
8
9
jobs:
10
- test:
+ # unit tests
11
+ units:
12
runs-on: ubuntu-latest
13
steps:
14
- uses: actions/checkout@v1
-
15
- run: npm ci
16
- run: npm test
17
+
18
+ # test action works running from the graph
19
+ test:
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - uses: actions/checkout@v1
23
- uses: ./
24
with:
25
milliseconds: 1000
0 commit comments