Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor GitHub Actionsのactionを20系に全挙げ #58

Merged
merged 2 commits into from
Mar 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
102 changes: 65 additions & 37 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,53 +1,81 @@
🗃components:
- src/lib/components/*
- changed-files:
- any-glob-to-any-file:
- src/lib/components/*
🧩types:
- frontend/src/lib/types/*
- changed-files:
- any-glob-to-any-file:
- frontend/src/lib/types/*
⚒utils:
- src/lib/utils/*
- changed-files:
- any-glob-to-any-file:
- src/lib/utils/*
📄pages:
- src/routes/*
- src/app.html
- src/error.html
- changed-files:
- any-glob-to-any-file:
- src/routes/*
- src/app.html
- src/error.html
🕵test:
- tests/*
- changed-files:
- any-glob-to-any-file:
- tests/*
🗺config:
- .env.example
- .eslintignore
- .eslintrc.cjs
- .gitattributes
- .gitignore
- .npmrc
- .prettierignore
- .prettierrc
- playwright-ct.config.ts
- playwright.config.ts
- postcss.config.cjs
- svelte.config.js
- tailwind.config.cjs
- tsconfig.json
- vite.config.ts
- changed-files:
- any-glob-to-any-file:
- .env.example
- .eslintignore
- .eslintrc.cjs
- .gitattributes
- .gitignore
- .npmrc
- .prettierignore
- .prettierrc
- playwright-ct.config.ts
- playwright.config.ts
- postcss.config.cjs
- svelte.config.js
- tailwind.config.cjs
- tsconfig.json
- vite.config.ts
🎁package:
- package.json
- pnpm-lock.yaml
- changed-files:
- any-glob-to-any-file:
- package.json
- pnpm-lock.yaml
👗static:
- static/*
- changed-files:
- any-glob-to-any-file:
- static/*
🐙github:
- .github/*
- changed-files:
- any-glob-to-any-file:
- .github/*
📄docs:
- README.md
- LICENSE
- changed-files:
- any-glob-to-any-file:
- README.md
- LICENSE

# 細かい分類
✈ci:
- .github/workflows/*
- .github/labeler.yml
- changed-files:
- any-glob-to-any-file:
- .github/workflows/*
- .github/labeler.yml
🖼layout:
- src/routes/**/+layout.svelte
- src/app.css
- changed-files:
- any-glob-to-any-file:
- src/routes/**/+layout.svelte
- src/app.css
🐟serverScript:
- src/routes/**/+page.server.ts
- src/lib/server/*
- src/hooks.server.js
- src/service-worker.js
- changed-files:
- any-glob-to-any-file:
- src/routes/**/+page.server.ts
- src/lib/server/*
- src/hooks.server.js
- src/service-worker.js
📱clientScript:
- src/hooks.client.js
- changed-files:
- any-glob-to-any-file:
- src/hooks.client.js
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest
name: Deploy
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Publish
uses: cloudflare/wrangler-action@2.0.0
uses: cloudflare/wrangler-action@3
with:
workingDirectory: .
apiToken: ${{ secrets.CF_API_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ jobs:
pull-requests: write

steps:
- uses: actions/labeler@v4
- uses: actions/labeler@v5
with:
repo-token: '${{ secrets.USUYUKI_GITHUB_TOKEN }}'
10 changes: 5 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v3
name: Install pnpm
id: pnpm-install
with:
Expand All @@ -31,7 +31,7 @@ jobs:
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/staticAnalysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v3
name: Install pnpm
id: pnpm-install
with:
Expand All @@ -31,7 +31,7 @@ jobs:
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/testCombination.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v3
name: Install pnpm
id: pnpm-install
with:
Expand All @@ -31,7 +31,7 @@ jobs:
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/testIntegration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v3
name: Install pnpm
id: pnpm-install
with:
Expand All @@ -31,7 +31,7 @@ jobs:
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/testUnit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v3
name: Install pnpm
id: pnpm-install
with:
Expand All @@ -31,7 +31,7 @@ jobs:
run: |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT

- uses: actions/cache@v3
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
Expand Down
Loading