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.
1 parent 795597f commit 284fe3bCopy full SHA for 284fe3b
.github/workflows/test.yml
@@ -11,16 +11,18 @@ jobs:
11
check-latest: true
12
- name: Install modules
13
run: npm i
14
+ - name: Upload artifacts
15
+ uses: actions/upload-artifact@v2
16
+ with:
17
+ name: current
18
+ path: .
19
test:
20
needs: prepare
21
runs-on: ubuntu-latest
22
steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-node@v2
23
+ - name: Download artifacts
24
+ uses: actions/download-artifact@v2
25
with:
- node-version: "15"
- check-latest: true
- - name: Install modules
- run: npm i
26
27
- name: Run tests
28
run: npm run test
0 commit comments