build(deps): Bump docker/build-push-action from 831ca179d3cf91cf0c90ca465a408fa61e2129a2 to 7e6f77677b7892794c8852c6e3773c3e9bc3129a #22
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
name: "JS CI" | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
branches: | |
- '*' | |
permissions: | |
contents: read | |
jobs: | |
js-ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run npm install | |
run: npm install | |
- name: Run npm build | |
run: npm run build | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |