Skal bytte dataset til prod v2023 som er en kopi av test etter store … #673
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 app | |
on: [pull_request, workflow_dispatch] | |
jobs: | |
build: | |
name: Bygg app | |
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" | |
if: github.actor != 'dependabot[bot]' | |
- name: Npm install build | |
run: npm install | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }} | |
- name: Npm build | |
run: npm run build |