Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into shooter_modal
Browse files Browse the repository at this point in the history
  • Loading branch information
Sea10wood authored Aug 10, 2024
2 parents 6c07ff0 + 325caba commit 31a4070
Show file tree
Hide file tree
Showing 6 changed files with 1,976 additions and 1,535 deletions.
24 changes: 18 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,37 @@ jobs:

steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
with:
version: 9
- run: |
npm install
npm run check:ci
pnpm install
pnpm check:ci
spell:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
with:
version: 9
- run: |
npm install
npm run spell
pnpm install
pnpm spell
build:
needs: [check, spell]
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
with:
version: 9
- run: |
npm install
npm run build
pnpm install
pnpm build
8 changes: 6 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,13 @@ jobs:

steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
with:
version: 9
- run: |
npm install
npm run build
pnpm install
pnpm build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
Expand Down
17 changes: 12 additions & 5 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,13 @@ jobs:

steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4
with:
version: 9
- run: |
npm install
npm run build
pnpm install
pnpm build
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
Expand Down Expand Up @@ -101,9 +105,12 @@ jobs:
uses: actions/checkout@v4

- name: Install and Build
run: |
npm install
npm run build
uses: pnpm/action-setup@v4
with:
version: 9
- run: |
pnpm install
pnpm build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"spell": "cspell ./src"
},
"dependencies": {
"@react-three/cannon": "^6.6.0",
"@react-three/fiber": "^8.16.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
Expand Down
Loading

0 comments on commit 31a4070

Please sign in to comment.