build(deps): update all dependencies updates #1734
This file contains hidden or 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
| on: | |
| - push | |
| - pull_request | |
| - workflow_call | |
| name: Continuous integration | |
| jobs: | |
| e2e-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Install dependencies | |
| uses: kubewarden/github-actions/policy-gh-action-dependencies@1a7c4d1174bba4cd64f87feed1e7fa6c56aa7a46 # v5.1.0 | |
| - name: Install kwctl | |
| uses: kubewarden/github-actions/kwctl-installer@1a7c4d1174bba4cd64f87feed1e7fa6c56aa7a46 # v5.1.0 | |
| - name: Install javy | |
| uses: ./.github/actions/javy-installer | |
| - name: Install npm dependencies in js directory | |
| run: | | |
| cd js | |
| npm install | |
| - name: Run e2e tests | |
| run: make e2e-tests |