Skip to content

Build and test from trigger pull_request #731

Build and test from trigger pull_request

Build and test from trigger pull_request #731

Workflow file for this run

name: Build and test
run-name: Build and test from trigger ${{ github.event_name }}
on: [workflow_call, push, pull_request]
env:
CI: true
TZ: Europe/Oslo
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
permissions:
contents: 'read'
packages: 'read'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
registry-url: 'https://npm.pkg.github.com'
scope: '@navikt'
- name: Install dependencies
run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build with mock
run: npm run build:mock
- uses: cypress-io/[email protected]
with:
install: false
start: npm run start:with:test
wait-on: 'http://localhost:3100/sendinn/api/isAlive'
config: video=false
config-file: cypress.config.ts