feat(add): move templates to separate files and add new ones #1675
Workflow file for this run
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: | |
branches: | |
- main | |
jobs: | |
ci: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
# permissions: | |
# id-token: write | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 0 | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: pnpm | |
- run: pnpm install | |
- run: pnpm lint | |
- run: pnpm test:types | |
- run: pnpm build | |
- run: pnpm knip | |
- run: pnpm test:dist | |
- run: pnpm test:unit | |
- if: matrix.os != 'windows-latest' | |
uses: codecov/codecov-action@v5 | |
- name: 📦 release pkg.pr.new | |
if: github.event_name != 'push' && matrix.os != 'windows-latest' | |
run: pnpx pkg-pr-new publish --compact --template './playground' | |
- name: 📦 release nuxi-nightly | |
if: | | |
github.event_name == 'push' && | |
matrix.os != 'windows-latest' && | |
!contains(github.event.head_commit.message, '[skip-release]') && | |
!contains(github.event.head_commit.message, 'docs') | |
run: | | |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> ~/.npmrc && | |
pnpm changelogen --canary nightly --publish | |
env: | |
NPM_TOKEN: ${{secrets.NPM_TOKEN}} | |
NPM_CONFIG_PROVENANCE: false |