-
-
Notifications
You must be signed in to change notification settings - Fork 259
51 lines (43 loc) · 1.08 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
name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- run: pnpm install
- name: Lint
run: pnpm lint
- name: Sync
run: pnpm sync
- name: Sync Status
run: git diff --exit-code
- name: Build
run: pnpm build
- uses: dorny/paths-filter@v2
if: github.event_name == 'push'
id: changes
with:
filters: |
modules:
- 'modules/**'
- 'lib/**'
- name: Publish to npm
if: github.event_name == 'push' && steps.changes.outputs.modules == 'true'
run: |
echo "//registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN" >> ~/.npmrc
echo "//registry.pnpmpkg.com/:_authToken=$NPM_AUTH_TOKEN" >> ~/.npmrc
pnpm release
env:
NPM_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}