-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (51 loc) · 1.36 KB
/
build.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
name: Release 🚀
on:
push:
branches:
- main
workflow_dispatch:
permissions:
pull-requests: write
contents: write
issues: write
id-token: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: cat .env >> $GITHUB_ENV
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Install dependencies
run: pnpm install
- name: Performing Type Check
run: pnpm run typecheck
- name: Performing Lint
run: pnpm run lint
- name: Performing Format
run: pnpm run format
- name: Performing Check
run: pnpm run check
- name: Performing Build
run: pnpm run build
- name: Performing Test
run: pnpm run test
- name: Release 🚀
id: changesets
uses: changesets/action@v1
with:
version: pnpm changeset version
publish: pnpm changeset publish
commit: "ci: :package: release"
title: "ci: :package: release"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}