-
Notifications
You must be signed in to change notification settings - Fork 9
40 lines (35 loc) · 882 Bytes
/
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
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: test, lint & typecheck
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- uses: ./.github/setup
- name: Lint
run: bun lint
- name: Typecheck
run: bun typecheck
- name: Test
run: bun run test
release:
name: release
needs: test
if: ${{ !contains(github.event.head_commit.message, 'skip ci') && !contains(github.event.head_commit.message, 'skip release') && github.event_name != 'pull_request' }}
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- uses: ./.github/setup
- name: Publish to NPM
run: bun run release
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}