fix(deps): bump axios and @serverless/platform-client #146
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# We want pushes to main, beta, and alpha to trigger a publish to npm for the corresponding npm dist-tag. | |
# Any pull request targeting deploy branches should run all tests. | |
on: | |
push: | |
branches: [main, beta, alpha] | |
pull_request: | |
branches: [main, beta, alpha] | |
jobs: | |
test: | |
uses: activescott/github-actions-workflows/.github/workflows/npm-tester.yml@npm-tester-v4 | |
with: | |
package_dir: ./ | |
node_versions: "[14, 16, 18]" | |
do_coveralls: true | |
publish: | |
if: ${{ github.event_name != 'pull_request' }} | |
needs: [test] | |
uses: activescott/github-actions-workflows/.github/workflows/npm-publisher.yml@npm-publisher-v4.0.1 | |
with: | |
package_dir: ./ | |
secrets: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |