-
-
Notifications
You must be signed in to change notification settings - Fork 78
53 lines (42 loc) · 1.31 KB
/
release.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
name: run tests & bump version & publish to npm
on:
push:
branches:
- 'main'
jobs:
release:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'chore:') && !contains(github.event.head_commit.message, 'docs:')"
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8.6.7
- name: install node
uses: actions/setup-node@v2
with:
node-version: 18.16.1
cache: 'pnpm'
- run: pnpm install --no-save
- name: run linting
run: pnpm lint
- name: run tests
run: pnpm test
- name: bump version and create tag
uses: 'phips28/gh-action-bump-version@master'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
minor-wording: 'feat'
major-wording: 'major'
- name: build package
run: pnpm build
- name: create browser artifacts
uses: actions/upload-artifact@v2
with:
name: typesafe-i18n-browser
path: dist/
- name: publish to npm
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}