Merge pull request #7 from stereobooster/dependabot/npm_and_yarn/astr… #178
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: | |
types: [opened, synchronize] | |
jobs: | |
build: | |
name: Build and Test | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
# https://stackoverflow.com/questions/60491837/saving-cache-on-job-failure-in-github-actions | |
- name: Cache turbo build restore | |
uses: actions/cache/restore@v3 | |
with: | |
path: .turbo | |
key: ${{ runner.os }}-turbo-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-turbo- | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
run_install: false | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".node-version" | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
# for Mermaid | |
- name: Install Playwright Browsers | |
run: pnpx playwright install chromium | |
# for PlantUML | |
# - uses: actions/setup-java@v4 | |
# with: | |
# distribution: "microsoft" | |
# java-version: "21" | |
# - uses: ts-graphviz/setup-graphviz@v2 | |
# for d2 | |
- run: curl -fsSL https://d2lang.com/install.sh | sh -s -- | |
- name: Build | |
run: pnpm build --cache-dir=.turbo | |
- name: Cache turbo build save | |
uses: actions/cache/save@v3 | |
# if: always() | |
with: | |
path: .turbo | |
key: ${{ runner.os }}-turbo-${{ github.sha }} | |
- name: Test | |
run: pnpm test |