Create typst package #3
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: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
- name: Set up pixi | |
uses: prefix-dev/setup-pixi@ba3bb36eb2066252b2363392b7739741bb777659 | |
- name: pre-commit | |
run: pixi run pre-commit-run --color=always --show-diff-on-failure | |
compile: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
- name: Set up pixi | |
uses: prefix-dev/setup-pixi@ba3bb36eb2066252b2363392b7739741bb777659 | |
- name: Link packages | |
run: | | |
mkdir -p ~/.local/share/typst/packages/preview/moderner-cv | |
ln -s $(pwd) ~/.local/share/typst/packages/preview/moderner-cv/0.1.0 | |
- name: compile | |
run: pixi run compile |