fix: bump webpack from 5.101.0 to 5.101.2 #724
Workflow file for this run
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
| name: Node.js CI | |
| on: [pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Download artifact smws codes | |
| uses: dsaltares/[email protected] | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| file: "data.json" | |
| repo: "elliottback/SMWS_Codes" | |
| target: "./data.json" | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install stuff | |
| run: npm ci | |
| env: | |
| PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 'true' | |
| - name: build | |
| run: npm run ci | |
| - name: Run headful puppeteer tests | |
| uses: elliottback/[email protected] | |
| with: | |
| args: npm test | |
| - name: Archive artifacts | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: dist | |
| if-no-files-found: error | |
| path: | | |
| dist/*.png |