Skip to content

Commit 4137b9a

Browse files
committed
fix: to not run quality on release
1 parent c38e055 commit 4137b9a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/quality.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,29 @@ on:
44
push:
55
branches:
66
- master
7+
branches-ignore:
8+
- changeset-release/*
79
pull_request:
10+
branches-ignore:
11+
- changeset-release/*
812

913
jobs:
14+
lockfile:
15+
name: Lockfile
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- name: Checkout
20+
uses: actions/checkout@v4
21+
22+
- name: Setup
23+
uses: ./.github/actions/ci
24+
25+
# The shared install action does not respect the
26+
# `--frozen-lockfile` flag, so we need to run it here.
27+
- name: Install with lockfile
28+
run: pnpm install --frozen-lockfile
29+
1030
linting:
1131
name: Linting
1232
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)