generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
60 lines (47 loc) · 1.25 KB
/
ci.yml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: Continuous Integration
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
test-typescript:
name: TypeScript Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Install pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.4
with:
cache: pnpm
- name: Install Dependencies
id: pnpm-install
run: pnpm install --frozen-lockfile
- name: Check Format
id: pnpm-format-check
run: pnpm run format:check
- name: Lint
id: pnpm-lint
run: pnpm run lint
- name: Test
id: pnpm-ci-test
run: pnpm run ci-test
test-action:
name: GitHub Actions Test
runs-on: ubuntu-latest
permissions:
actions: write
steps:
- name: Checkout
id: checkout
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Test Local Action
id: test-action
uses: ./