-
Notifications
You must be signed in to change notification settings - Fork 1
73 lines (58 loc) · 1.56 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
61
62
63
64
65
66
67
68
69
70
71
72
73
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 2
env:
SKIP_YARN_COREPACK_CHECK: '1'
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/setup
- name: Lint files
run: yarn lint
- name: Typecheck files
run: yarn typecheck
scan:
runs-on: ubuntu-latest
timeout-minutes: 2
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/setup
- name: Run Trivy vulnerability scanner
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs'
ignore-unfixed: true
skip-dirs: node_modules
exit-code: 1
release:
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci') && github.repository_owner == 'gr4vy' && github.ref == 'refs/heads/main'"
runs-on: ubuntu-latest
needs:
- lint
- scan
steps:
- name: Checkout
uses: actions/checkout@v3
with:
token: ${{ secrets.DISPATCH_ACCESS_TOKEN }}
- name: Prepare repository
run: git fetch --unshallow --tags
- name: Setup
uses: ./.github/actions/setup
- name: Create Release
env:
GITHUB_TOKEN: ${{ secrets.DISPATCH_ACCESS_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
yarn prepack
yarn release