-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
37e6926
commit e38aaa6
Showing
1 changed file
with
10 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,26 +9,23 @@ jobs: | |
steps: | ||
- name: Checkout 🛎️ | ||
uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '18' | ||
|
||
- name: Enable Corepack | ||
run: corepack enable | ||
|
||
- name: Set Yarn version to Berry | ||
run: corepack prepare [email protected] --activate | ||
|
||
- name: Install Bun | ||
run: curl -fsSL https://bun.sh/install | bash | ||
|
||
- name: Install dependencies | ||
run: yarn install | ||
run: bun install | ||
|
||
- name: Build auto-utils package 🔧 | ||
run: yarn workspace @autonomys/auto-utils build | ||
run: bun run --filter '@autonomys/auto-utils' build | ||
|
||
- name: Build all packages 🔧 | ||
run: yarn build | ||
run: bun build | ||
|
||
- name: Run tests 🧪 | ||
run: yarn test | ||
run: bun test |