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

chore: main.yml から packages ジョブを削除 #2

Merged
merged 1 commit into from
Dec 15, 2024
Merged
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
19 changes: 0 additions & 19 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,9 @@ on:
pull_request:

jobs:
packages:
name: Packages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: npm
- run: npm ci

build:
name: Build
runs-on: ubuntu-latest
needs:
- packages
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -37,8 +24,6 @@ jobs:
lint:
name: Lint
runs-on: ubuntu-latest
needs:
- packages
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -51,8 +36,6 @@ jobs:
format:
name: Format
runs-on: ubuntu-latest
needs:
- packages
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand All @@ -65,8 +48,6 @@ jobs:
typeCheck:
name: Type Check
runs-on: ubuntu-latest
needs:
- packages
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down
Loading