ci: maybe we don't have to cache images #13
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: Test on push | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: moonrepo/setup-toolchain@v0 | |
with: | |
auto-install: true | |
- name: Cache dependencies | |
uses: actions/setup-node@v4 | |
with: | |
# `actions/setup-node` can be configured to not set up Node.js by omitting the `node-version` field | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm i | |
- name: Lint | |
run: pnpm lint | |
# This step is required to pass type-checking | |
- name: Prebuild | |
run: pnpm vite build | |
- name: Build | |
run: pnpm build | |
- name: Test | |
run: pnpm test | |
- name: Playground Build | |
run: cd playground && pnpm build | |
- name: Playground Test | |
run: | | |
cd playground | |
docker compose up -d | |
pnpm test:container | |
docker compose down | |
- name: Upload diffs if VRT failed | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: VRT diffs | |
path: playground/test-results | |
retention-days: 7 |