We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c70bac commit 7e252fdCopy full SHA for 7e252fd
1 file changed
.github/workflows/integration.yml .github/workflows/push.yml.github/workflows/integration.yml renamed to .github/workflows/push.yml
@@ -7,22 +7,23 @@ on:
7
8
jobs:
9
build-and-lint:
10
- name: Build and lint
+ name: Build, lint, and unit tests
11
runs-on: ubuntu-latest
12
- if: "!contains(github.event.head_commit.message, 'skip ci')"
13
steps:
14
- uses: actions/checkout@v4
+ - uses: pnpm/action-setup@v4
15
+ with:
16
+ version: latest
17
- name: Use Node.js 22.x
18
uses: actions/setup-node@v4
19
with:
20
node-version: 22.x
- - name: Install deps (with cache)
- uses: bahmutov/npm-install@v1
21
+ cache: pnpm
22
+ - run: pnpm install --frozen-lockfile
23
- name: Build
- run: yarn build
24
+ run: pnpm build
25
- name: Lint
- run: yarn lint
-
26
+ run: pnpm lint
27
e2e-tests:
28
name: E2E tests (nightly)
29
0 commit comments