Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: actions/setup-node@v4
with:
cache: 'pnpm'
node-version: 18.x
node-version: 22.x
Comment thread
ryan-roemer marked this conversation as resolved.
Outdated

# Wireit cache
- uses: google/wireit@setup-github-actions-caching/v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-spectacle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
node-version: [22.x]
Comment thread
ryan-roemer marked this conversation as resolved.
Outdated
create-type: ['tsx', 'onepage']
steps:
- uses: actions/checkout@v4
Expand Down
11 changes: 9 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:
jobs:
release:
runs-on: ubuntu-latest
environment: Production
permissions:
contents: write
id-token: write
Expand All @@ -20,6 +21,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
fetch-depth: 0

- uses: pnpm/action-setup@v3
Expand All @@ -29,7 +31,13 @@ jobs:
- uses: actions/setup-node@v4
with:
cache: 'pnpm'
node-version: 18.x
node-version: 22.x
Comment thread
ryan-roemer marked this conversation as resolved.
Outdated

- name: Upgrade npm for OIDC
run: npm i -g npm@^11.5.1
Comment thread
ryan-roemer marked this conversation as resolved.
Outdated

- name: Set npm registry for OIDC
run: npm config set registry https://registry.npmjs.org
Comment thread
ryan-roemer marked this conversation as resolved.
Outdated

- name: Install dependencies
run: pnpm install
Expand All @@ -48,4 +56,3 @@ jobs:
publish: pnpm changeset publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
18.x
22.x
Comment thread
ryan-roemer marked this conversation as resolved.