-
Notifications
You must be signed in to change notification settings - Fork 1
37 lines (33 loc) · 934 Bytes
/
push.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
name: On Push
on: [push]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: denoland/setup-deno@v1
- run: make check-format
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: denoland/setup-deno@v1
- run: make test
publish-gpr:
name: Publish Version
needs: [test, lint]
runs-on: ubuntu-latest
if: "contains(github.ref, 'main') && !contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
steps:
- uses: actions/checkout@main
- uses: denoland/setup-deno@v1
- uses: actions/setup-node@main
- run: git fetch --tags
- run: make
- run: make build
- run: npx auto shipit
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}