use bun again

This commit is contained in:
Viktor Rådberg
2023-09-18 09:29:38 +02:00
parent c504e7f516
commit 5f91abf194
2 changed files with 8 additions and 4 deletions

View File

@@ -10,7 +10,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: yarn && yarn build && yarn lint
- uses: oven-sh/setup-bun@v1
- run: bun install && bun run build && bun run lint
- uses: FirebaseExtended/action-hosting-deploy@v0
with:
repoToken: '${{ secrets.GITHUB_TOKEN }}'

View File

@@ -22,11 +22,14 @@ jobs:
with:
node-version: 18
- name: Set up bun
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: yarn install
run: bun install
- name: Run lint
run: yarn lint
run: bun run lint
- name: Build project
run: yarn build
run: bun run build