-
-
Notifications
You must be signed in to change notification settings - Fork 6
26 lines (22 loc) · 678 Bytes
/
lab.yml
File metadata and controls
26 lines (22 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: Lab
on:
workflow_dispatch:
jobs:
lab:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22.x
- uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4
- run: pnpm install
- run: pnpm check
- run: pnpm lint
- run: pnpm circular
- run: pnpm build
- if: ${{ always() }}
uses: mxschmitt/action-tmate@7b6a61a73bbb9793cb80ad69b8dd8ac19261834c # v3
with:
limit-access-to-actor: true