Skip to content

Commit

Permalink
fix(ci): fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
radyakaze committed Oct 1, 2024
1 parent 2f6dcea commit 6fa47f7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,13 @@ jobs:
node-version: 20

- name: Install dependencies
run: npx nypm@latest i
run: yarn install --immutable

- name: Generate types
run: yarn dev:prepare

- name: Lint
run: npm run lint
run: yarn lint

# test:
# runs-on: ubuntu-latest
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ jobs:
- name: Install dependencies
run: yarn install

- name: Prepare build environment
- name: Generate types
run: yarn dev:prepare

- name: Lint
run: yarn lint

- name: release
run: yarn release
env:
Expand Down

0 comments on commit 6fa47f7

Please sign in to comment.