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
14 changes: 13 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,20 @@ jobs:

- run: corepack enable

- name: Cache Yarn
uses: actions/cache@v4
with:
path: |
.yarn/cache
.yarn/install-state.gz
.pnp.cjs
.pnp.loader.mjs
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-

- name: Install Dependencies
run: yarn
run: yarn install --immutable

- name: Run CI
run: yarn ci
15 changes: 14 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,21 @@ jobs:

- run: corepack enable

- name: Cache Yarn
uses: actions/cache@v4
with:
path: |
.yarn/cache
.yarn/install-state.gz
.pnp.cjs
.pnp.loader.mjs
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-

- name: Install Dependencies
run: yarn
run: yarn install --immutable


- name: Create Release Pull Request or Publish to npm
id: changesets
Expand Down
14 changes: 13 additions & 1 deletion .github/workflows/snapshot_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,20 @@ jobs:

- run: corepack enable

- name: Cache Yarn
uses: actions/cache@v4
with:
path: |
.yarn/cache
.yarn/install-state.gz
.pnp.cjs
.pnp.loader.mjs
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-

- name: Install Dependencies
run: yarn
run: yarn install --immutable

- name: Publish
uses: seek-oss/changesets-snapshot@v0
Expand Down