This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
Github workflows (CI og Pages) #1
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: 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 |