Skip to content

Commit

Permalink
ci: bun install
Browse files Browse the repository at this point in the history
  • Loading branch information
movibe committed Oct 2, 2023
1 parent 929e353 commit 7d227e3
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,18 @@ jobs:
test:
name: Lint & Test
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message , '[skip ci]')"
if: "!contains(github.event.head_commit.message, '[skip ci]')"
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Setup
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
registry-url: https://npm.pkg.github.com
uses: oven-sh/setup-bun@v1

- name: Install Dependencies
run: yarn install --frozen-lockfile --non-interactive
env:
NODE_AUTH_TOKEN: ${{ secrets.GIT_PACKAGES_TOKEN }}
run: bun i

- name: Run linters
uses: wearerequired/lint-action@v1
Expand All @@ -36,4 +30,4 @@ jobs:

- name: Test
run: |
yarn test:ci
bun run test:ci

0 comments on commit 7d227e3

Please sign in to comment.