feat: use relative paths for virtual module ids #40
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 and Publish | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
issues: write | |
pull-requests: write | |
id-token: write | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- 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 | |
- 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 | |
docker compose down | |
- name: Get Next Package Version | |
id: version | |
run: | | |
echo "PACKAGE_RELEASE_VERSION=$(pnpm --silent next-version)" >> "$GITHUB_OUTPUT" | |
- name: Create Release Pull Request or Publish to npm | |
uses: changesets/action@v1 | |
with: | |
title: "Release v${{ steps.version.outputs.PACKAGE_RELEASE_VERSION }}" | |
commit: "release: v${{ steps.version.outputs.PACKAGE_RELEASE_VERSION }}" | |
publish: pnpm tag-and-publish | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_CONFIG_PROVENANCE: "true" | |
- name: Upload Test Results if VRT failed | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: VRT Results | |
path: playground/test-results | |
retention-days: 7 |