Skip to content

Commit

Permalink
fix: simplify git workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
DimiDumo committed Oct 21, 2024
1 parent cff4dd8 commit 1b06f6c
Showing 1 changed file with 3 additions and 26 deletions.
29 changes: 3 additions & 26 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,33 +25,10 @@ jobs:
- name: Install yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install --immutable
run: yarn install --immutable
- name: Run tests
run: yarn test
- name: Install bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Cache build artifacts
uses: actions/cache@v2
with:
path: |
./*
key: ${{ runner.os }}-build-${{ github.sha }}

test:
needs: build
runs-on: ubuntu-latest
steps:
- name: Restore cached build artifacts
uses: actions/cache@v2
with:
path: |
./*
key: ${{ runner.os }}-build-${{ github.sha }}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install yarn
run: npm install -g yarn
- name: Run tests
run: yarn test

0 comments on commit 1b06f6c

Please sign in to comment.