Skip to content

Build and test from trigger push #33

Build and test from trigger push

Build and test from trigger push #33

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
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
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
spec: cypress/e2e/*.cy.js
start: npm run start:with:test
wait-on: 'http://localhost:3100/sendinn/api/isAlive'
config: video=false
config-file: cypress.config.ts