Adapt regex reading cube ids urls #1158
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: Client Test | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
client: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [22.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "npm" | |
- run: npm ci | |
- run: npm run build-server | |
- run: npm run client-type-check | |
- run: npx webpack --config client/webpack.config.cjs --mode=production | |
- run: mkdir screenshots | |
- run: npm run fronttest-headless | |
timeout-minutes: 30 | |
continue-on-error: true | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: screenshots | |
path: screenshots/*.png |