-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (64 loc) · 1.65 KB
/
npm-publish.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
62
63
64
65
66
name: Rollup React Component NPM Package
on:
# release:
# types: [published]
push:
branches:
- main
# pull_request:
# schedule:
# - cron: '0 12 * * *'
jobs:
build:
name: Test & Build
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node: [14]
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies
run: npm ci
# - name: Run teststall
# run: npm run test
- name: Run publish
run: npm run publish
# - name: Check That Build Is ES5 Compatible
# run: npm run is-build-es5
release:
name: Release
runs-on: ubuntu-latest
if: ${{ github.ref == 'refs/heads/main' }}
needs: build
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
- name: Setup Node
uses: actions/setup-node@v1
- name: Install dependencies
run: npm ci
- name: Run publish
run: npm run publish
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v2
with:
semantic_version: 16
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}