Custom fetch som returnerer data: [] dersom 204 #870
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: 'Build code and run tests' | |
on: | |
push: | |
branches: | |
- '**' # Build all branches | |
tags-ignore: | |
- '**' # Don't build any tags | |
workflow_dispatch: | |
jobs: | |
build_code: | |
name: 'Build Code and run Tests' | |
runs-on: ubuntu-latest | |
permissions: | |
packages: read | |
contents: read | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 'Build npm project and run Tests' | |
uses: navikt/sosialhjelp-ci/actions/build-npm@main | |
with: | |
node-version: 20 | |
build-less: 'false' | |
reader-token: ${{ secrets.READER_TOKEN }} |