Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependency updates #80

Merged
merged 13 commits into from
Mar 6, 2024
10 changes: 5 additions & 5 deletions .github/workflows/publish-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:
# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v1
with:
node-version: "12.x"
node-version: "20.x"
# Defaults to the user or organization that owns the workflow file
# scope: '@octocat'
- run: npm install
- run: npm ci
- run: npm run build
# - run: npm run coverage
- run: npm run test
- run: npm run lint
- run: npm run coverage

publish-npm:
needs: build
Expand All @@ -30,9 +30,9 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
node-version: 20
registry-url: https://registry.npmjs.org/
- run: npm install
- run: npm ci
- run: npm run build
- run: npm publish
env:
Expand Down
Loading
Loading