Skip to content

Splittet lenker til CV og stillingssøk. Ikon skal endres #215

Splittet lenker til CV og stillingssøk. Ikon skal endres

Splittet lenker til CV og stillingssøk. Ikon skal endres #215

name: Build and test on push
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup node.js
uses: actions/setup-node@v3
with:
node-version: '20'
registry-url: 'https://npm.pkg.github.com'
cache: 'npm'
- name: Install dependencies
run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
- name: Lint application
run: npm run lint
- name: Build application
run: npm run build
- name: Run tests
run: npm test