Skip to content

🚀 Pilot for "Nytt design for små skjermer" (aka CompactMode) (#485) #112

🚀 Pilot for "Nytt design for små skjermer" (aka CompactMode) (#485)

🚀 Pilot for "Nytt design for små skjermer" (aka CompactMode) (#485) #112

Workflow file for this run

name: Publish gh-pages
on:
push:
branches:
- main
workflow_dispatch:
env:
CI: true
TZ: Europe/Oslo
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies (bun)
run: bun install
- name: Initalize MSW
run: npx msw init ./public
- name: Build
run: npm run build:gh-pages
- name: Deploy
if: success()
uses: crazy-max/ghaction-github-pages@v2
with:
build_dir: build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}