Skip to content

Commit 8aaf08a

Browse files
authored
Merge pull request #153 from AthennaIO/develop
feat(mock): add way to mock http requests
2 parents cf85a0a + d30b557 commit 8aaf08a

File tree

5 files changed

+1095
-765
lines changed

5 files changed

+1095
-765
lines changed

.github/workflows/cd.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,17 @@ on:
88
jobs:
99
build:
1010
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
id-token: write
1114
steps:
1215
- name: Checkout
1316
uses: actions/checkout@v2
1417
with:
1518
fetch-depth: 0
1619
- uses: actions/setup-node@v1
1720
with:
18-
node-version: '20.x'
21+
node-version: '21.x'
1922
registry-url: 'https://registry.npmjs.org'
2023

2124
- name: Install dependencies
@@ -32,8 +35,7 @@ jobs:
3235
id: release
3336

3437
- name: Publish to NPM Registry
35-
run: cd build && npm publish --access public
38+
run: cd build && npm publish --provenance --access public
3639
if: steps.release.outputs.released == 'true'
3740
env:
38-
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3941
name: Deploy

0 commit comments

Comments
 (0)