We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c38e055 commit 4137b9aCopy full SHA for 4137b9a
.github/workflows/quality.yml
@@ -4,9 +4,29 @@ on:
4
push:
5
branches:
6
- master
7
+ branches-ignore:
8
+ - changeset-release/*
9
pull_request:
10
11
12
13
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
30
linting:
31
name: Linting
32
runs-on: ubuntu-latest
0 commit comments