Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Github workflows (CI og Pages) #1

Github workflows (CI og Pages)

Github workflows (CI og Pages) #1

Workflow file for this run

name: CI
on:
push:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: 'Tests'
runs-on: ubuntu-latest
steps:
- name: 'Checking Out Code'
uses: actions/checkout@v4
- name: 'Installing Dependencies'
uses: ./.github/actions/install
- name: 'Running Unit Tests'
run: pnpm test
build:
name: 'Builds'
runs-on: ubuntu-latest
steps:
- name: 'Checking Out Code'
uses: actions/checkout@v4
- name: 'Installing Dependencies'
uses: ./.github/actions/install
- name: 'Building'
run: pnpm --filter "capra-fagradar" build