Skip to content

Commit

Permalink
ci: with bun
Browse files Browse the repository at this point in the history
  • Loading branch information
hyochan committed Jul 24, 2024
1 parent bfe200d commit 2faf9e8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-ktlint-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
- uses: yutailang0119/action-ktlint@v3
with:
report-path: build/*.xml # Support glob patterns by https://www.npmjs.com/package/@actions/glob
continue-on-error: false # If annotations contain error of severity, action-ktlint exit 1.
continue-on-error: true # If annotations contain error of severity, action-ktlint exit 1.
16 changes: 10 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,22 @@ jobs:

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

- name: Setup Node.js
uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
cache: 'yarn'
node-version: 20.x

- name: Install reviewdog
uses: reviewdog/action-setup@v1

- name: Install dependencies
run: yarn install --immutable
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- name: Install modules
run: bun install --immutable


# - name: Install node_modules for `IapExample/`
# run: yarn install --immutable
Expand Down

0 comments on commit 2faf9e8

Please sign in to comment.