-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: simplify github actions and workflows
- Loading branch information
1 parent
f6f95bb
commit c458ba3
Showing
12 changed files
with
73 additions
and
147 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
8 changes: 4 additions & 4 deletions
8
.github/actions/cache/action.yml → .github/actions/cache-node/action.yml
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: "💽️ " | ||
|
||
inputs: | ||
node-version: | ||
default: "20" | ||
description: "🔢 Node version" | ||
required: true | ||
pnpm-version: | ||
default: "8" | ||
description: "🔢 pnpm version" | ||
required: true | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: "🔧 pnpm" | ||
uses: pnpm/action-setup@v3 | ||
with: | ||
version: ${{ inputs.pnpm-version }} | ||
|
||
- name: "💽️ Node ${{ inputs.node-version }}" | ||
uses: actions/setup-node@v4 | ||
with: | ||
registry-url: "https://registry.npmjs.org" | ||
node-version: ${{ inputs.node-version }} | ||
cache: "pnpm" | ||
cache-dependency-path: ./app/pnpm-lock.yaml | ||
|
||
- name: "⚡️ Turbo" | ||
shell: bash | ||
run: pnpm add -g turbo |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,6 @@ name: '📝 PR Title' | |
|
||
on: | ||
pull_request_target: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
main: | ||
|
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
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
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