Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,18 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: corepack
run: npm install -g corepack && corepack enable
- uses: biomejs/setup-biome@v2
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache: "yarn"
- name: install
run: npm install
run: yarn
- name: lint+format
run: biome ci
- name: build
run: npm run build
run: yarn build
- name: test
run: npm run test
run: yarn test
9 changes: 5 additions & 4 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,19 @@ jobs:
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: corepack
run: npm install -g corepack && corepack enable
- uses: actions/setup-node@v4
with:
cache: "npm"
cache: "yarn"

- run: npm install
- run: yarn

- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
version: npm run version
publish: npm run release
publish: yarn release
title: Publish <version>
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
1 change: 0 additions & 1 deletion .npmrc

This file was deleted.

1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
Loading