chore(deps): update dependency better-sqlite3 to v12 #234
Workflow file for this run
This file contains hidden or 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: release | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
permissions: {} | |
jobs: | |
release-pr: | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'pull_request' }} | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- run: npm i -g --force corepack && corepack enable | |
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
with: | |
node-version: lts/* | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Prepare build environment | |
run: pnpm dev:prepare | |
- run: pnpm build | |
- name: publish nightly release | |
run: pnpm pkg-pr-new publish --compact | |
release-nightly: | |
runs-on: ubuntu-latest | |
if: ${{ github.repository_owner == 'nuxt' && github.event_name == 'push' }} | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- run: npm i -g --force corepack && corepack enable | |
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
with: | |
node-version: lts/* | |
registry-url: "https://registry.npmjs.org/" | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Prepare build environment | |
run: pnpm dev:prepare | |
- name: nightly release | |
run: pnpm changelogen --canary nightly --publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} | |
NPM_CONFIG_PROVENANCE: true |