-
-
Notifications
You must be signed in to change notification settings - Fork 2
68 lines (63 loc) · 1.77 KB
/
ci.yaml
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
61
62
63
64
65
66
67
68
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, synchronize, reopened]
schedule:
- cron: 0 0 * * 0
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-node:
strategy:
matrix:
node-version: [18, 20, 22]
name: test (node-${{ matrix.node-version }})
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- run: pnpm build && pnpm test:node
test-all:
name: test (deno, bun)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- uses: denoland/setup-deno@v1
- uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- run: pnpm lint && [ -z "$(git status --porcelain)" ]
- run: pnpm test:deno && pnpm test:bun
devskim:
name: devskim
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- uses: actions/checkout@v4
- uses: microsoft/devskim-action@v1
with:
directory-to-scan: src
- run: |
jq '(.. | select(type == "object" and .artifactLocation and .artifactLocation.uri) | .artifactLocation.uri) |= "src/" + .' devskim-results.sarif > devskim-results.sarif.tmp
mv devskim-results.sarif.tmp devskim-results.sarif
- uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: devskim-results.sarif
category: devskim