Skip to content

Commit

Permalink
修正
Browse files Browse the repository at this point in the history
  • Loading branch information
Keito654 committed Apr 26, 2024
1 parent 6a181c0 commit fdfdbdd
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 13 deletions.
21 changes: 13 additions & 8 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- name: yarn install
run: yarn install
- name: yarn build
run: yarn build
node-version: 20
cache: pnpm
- uses: pnpm/action-setup@v3
with:
version: 9.0.6
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- args: [--global, gulp, prettier, typescript]
- name: pnpm build
run: pnpm build
env:
GITHUB_PAGES: true
15 changes: 10 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
# yarnのキャッシュを効かすために設定 (npmのかたはnpmで)
cache: pnpm
- name: pnpm install
run: pnpm install
- uses: pnpm/action-setup@v3
with:
version: 9.0.6
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- args: [--global, gulp, prettier, typescript]
- name: pnpm build
run: pnpm build
# GIthubページは https://USERNAME.github.io/REPOSITORY_NAME/
Expand Down

0 comments on commit fdfdbdd

Please sign in to comment.