We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dea348d commit 14bc0a4Copy full SHA for 14bc0a4
2 files changed
.github/workflows/publish-on-tag.yaml
@@ -15,8 +15,8 @@ defaults:
15
shell: bash
16
17
jobs:
18
- test-and-publish:
19
- name: Test and publish package
+ publish:
+ name: Publish package
20
runs-on: ubuntu-latest
21
permissions:
22
contents: read
@@ -38,9 +38,6 @@ jobs:
38
- name: Build TypeScript
39
run: npm run build
40
41
- - name: Run tests
42
- run: npm test
43
-
44
- name: Publish to npm
45
env:
46
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
.github/workflows/tests-on-pr.yaml
@@ -29,5 +29,8 @@ jobs:
29
30
31
32
+ - name: Download test fixtures
33
+ run: bash tests/fixtures/download.sh
34
+
35
- name: Run tests
36
run: npm test
0 commit comments