Skip to content

Commit

Permalink
Merge pull request #1901 from serverless-heaven/fix/update-deps
Browse files Browse the repository at this point in the history
Update all deps to have [email protected]
  • Loading branch information
j0k3r committed Aug 20, 2024
2 parents b8d8bea + 3616d29 commit 8404f26
Show file tree
Hide file tree
Showing 3 changed files with 3,181 additions and 1,015 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,24 @@ jobs:
publish-npm:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: "Checkout"
uses: actions/checkout@v4
with:
fetch-depth: 2

- name: "Install Node.js"
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm test
- run: npm publish

- name: "Install dependencies"
run: npm ci

- name: "Run tests"
run: "npm run test"

- name: "Publish package"
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
Loading

0 comments on commit 8404f26

Please sign in to comment.