Bump github/dependabot-update-job-proxy/dependabot-update-job-proxy from v2.0.20231207221155 to v2.0.20240104195609 in /docker #5651
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: 'integration' | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- 'releases/*' | |
permissions: | |
contents: read | |
jobs: | |
integration: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Read .nvmrc | |
id: nvm | |
run: echo "NVMRC=$(cat .nvmrc)" >> $GITHUB_OUTPUT | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ steps.nvm.outputs.NVMRC }} | |
- name: Install npm dependencies | |
run: npm clean-install | |
- name: Pre-fetch the pinned images | |
run: npm run fetch-images -- bundler | |
- name: Run integration tests | |
run: npm run test-integration | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |