-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cicd(workflow): added deploy step and conditional steps for each job
- Loading branch information
Showing
5 changed files
with
86 additions
and
178 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
name: Code check | ||
|
||
name: CI | ||
on: | ||
pull_request: | ||
branches: ["*"] | ||
|
@@ -44,6 +43,7 @@ jobs: | |
- run: pnpm lint | ||
|
||
format: | ||
needs: lint | ||
runs-on: ubuntu-latest | ||
name: Format | ||
steps: | ||
|
@@ -79,9 +79,10 @@ jobs: | |
- name: Install dependencies | ||
run: pnpm install | ||
|
||
- run: pnpm format:check | ||
- run: pnpm format:write | ||
|
||
tsc: | ||
needs: format | ||
runs-on: ubuntu-latest | ||
name: Typecheck | ||
steps: | ||
|
@@ -105,14 +106,47 @@ jobs: | |
id: pnpm-cache | ||
run: | | ||
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT | ||
- uses: actions/cache@v4 | ||
name: Setup pnpm cache | ||
with: | ||
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} | ||
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
restore-keys: | | ||
${{ runner.os }}-pnpm-store- | ||
- name: Install dependencies | ||
run: pnpm install | ||
|
||
- run: pnpm typecheck | ||
|
||
deploy: | ||
needs: tsc | ||
runs-on: ubuntu-latest | ||
name: Deploy | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
|
||
- uses: pnpm/[email protected] | ||
name: Install pnpm | ||
id: pnpm-install | ||
with: | ||
version: 8.6.1 | ||
run_install: false | ||
|
||
- name: Install packages | ||
run: pnpm install --frozen-lockfile | ||
|
||
- name: Install Railway | ||
run: pnpm add -g @railway/cli | ||
|
||
- name: Deploy | ||
run: railway up | ||
env: | ||
RAILWAY_TOKEN: ${{ secrets.RAILWAY_TOKEN }} |
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
Oops, something went wrong.