-
Notifications
You must be signed in to change notification settings - Fork 4
61 lines (56 loc) · 1.63 KB
/
test-and-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
54
55
56
57
58
59
60
61
name: Node CI
on: [push]
jobs:
test:
name: Test and
runs-on: ubuntu-latest
steps:
- name: Preserve line endings
run: git config --global core.autocrlf false
- name: Checkout
uses: actions/checkout@v1
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: node-modules-${{ hashFiles('**/yarn.lock') }}
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- name: Install
run: yarn
- name: Test
run: yarn run test
release:
name: npm publish / GitHub release
needs: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- uses: actions/cache@v2
with:
path: '**/node_modules'
key: node-modules-${{ hashFiles('**/yarn.lock') }}
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- name: Install
run: yarn
- name: Build
if: success()
run: |
yarn run compile
yarn run compile:datasource
cp README.md dist/akita-filters-plugin/README.md
cp LICENSE.md dist/akita-filters-plugin/LICENSE.md
- name: Semantic Release
if: success()
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release