Cypress-test for sykehusprofil #12330
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: Node.js CI | |
on: | |
push: | |
branches: [develop] | |
pull_request: | |
branches: [main, develop, dependency_updates] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build and Test | |
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] | |
steps: | |
- uses: actions/checkout@v4.1.7 | |
- name: Enable Corepack before setting up Node | |
run: corepack enable | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4.0.3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "yarn" | |
- run: corepack enable && yarn install | |
- run: yarn run check-types | |
- run: yarn run check-format | |
- run: yarn lint | |
- run: yarn knip | |
- run: yarn run test | |
- name: Code coverage | |
if: matrix.node-version == '20.x' | |
uses: codecov/codecov-action@v4.5.0 |