Skip to content

[KAIZEN-0] Sørge for korrekt saksoversikt komponent #615

[KAIZEN-0] Sørge for korrekt saksoversikt komponent

[KAIZEN-0] Sørge for korrekt saksoversikt komponent #615

Workflow file for this run

name: Publish gh-pages
on:
push:
branches:
- dev
env:
CI: true
TZ: Europe/Oslo
jobs:
build-and-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
pages: write
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16.13.1'
- uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: npm ci
- name: Switch to gh-dev build
run: |
echo 'REACT_APP_USE_HASH_ROUTER=true' >> .env.development
mv .env.development .env.production.local
- name: Build
run: npm run build
- name: Deploy
if: success()
uses: crazy-max/ghaction-github-pages@v2
with:
build_dir: build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}