La atlas-bygg gå gjennom selv om innhold mangler. #3085
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: Cypress | |
on: | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [main, develop] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Cypress testing | |
runs-on: ubuntu-latest | |
env: | |
NEXT_PUBLIC_API_HOST: https://prod-mong-api.skde.org | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
strategy: | |
matrix: | |
node-version: [20.x, 22.x] | |
steps: | |
- uses: actions/[email protected] | |
- name: Enable Corepack before setting up Node | |
run: corepack enable | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "yarn" | |
- run: corepack enable && yarn install | |
- run: yarn workspace skde run build | |
- name: Cypress run | |
uses: cypress-io/[email protected] | |
with: | |
working-directory: ./apps/skde | |
build: yarn export | |
start: yarn start-server | |
browser: chrome | |
- name: Archive production artifacts | |
if: failure() | |
uses: actions/[email protected] | |
with: | |
name: cypress videos | |
path: apps/skde/cypress/videos | |
retention-days: 1 |