Skip to content

logger besøk

logger besøk #1603

Workflow file for this run

name: Build check
on: [push]
jobs:
build:
name: Build application
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Autentiser med GitHub NPM registry
run: |
echo "//npm.pkg.github.com/:_authToken=${{ secrets.READER_TOKEN }}" >> ~/.npmrc
echo "@navikt:registry=https://npm.pkg.github.com" >> ~/.npmrc
- name: Install npm dependencies
run: npm install
- name: Build application
run: npm run build
env:
IMAGE_PROXY_URL: 'Test'
CDN_URL: 'Test'
RUNTIME_ENVIRONMENT: 'Test'
- name: Run linting
run: npm run lint