Skip to content

⬆️ Bump postcss from 8.4.29 to 8.4.31 #104

⬆️ Bump postcss from 8.4.29 to 8.4.31

⬆️ Bump postcss from 8.4.29 to 8.4.31 #104

Workflow file for this run

name: "Build and test PR"
on:
pull_request:
branches:
- "main"
paths-ignore:
- '**.md'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
APP: aap-kalkulator-frontend
IMAGE_BASE: ghcr.io/${{ github.repository }}
jobs:
build-and-publish:
name: Bygg og publiser Docker image
runs-on: ubuntu-latest
outputs:
image: ${{ steps.bygg.outputs.image }}
steps:
- uses: "actions/checkout@v3"
- uses: "actions/setup-node@v3"
with:
node-version: "18"
registry-url: "https://npm.pkg.github.com"
cache: yarn
- name: install dependencies Yarn
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
env:
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
- name: test application
run: yarn test