-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (38 loc) · 1013 Bytes
/
Copy pathrelease.yaml
File metadata and controls
49 lines (38 loc) · 1013 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Release
on:
push:
branches:
- master
permissions:
contents: read
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Install dependendencies
run: npm i
- name: Generate Test Database
run: npm run test:push-schema
- name: Generate Prisma client
run: npm run test:generate-client
- name: Run lint
run: npm run lint
- name: Run tests
run: npm run test
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
- name: Build
run: npm run build
- name: Release
run: npm run publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}