-
Notifications
You must be signed in to change notification settings - Fork 15
89 lines (68 loc) · 1.89 KB
/
build-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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: Build and Publish
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install hub
run: |
sudo apt update
sudo apt install hub
hub --version
- name: Install RubyGems
run: |
sudo apt install -y ruby-full
gem --version
- name: Install GitHub changelog generator
run: gem install github_changelog_generator --user-install
- name: Install dependencies
run: yarn
- name: Set Ribby as git user
run: |
git config user.name "Ribby"
git config user.email "[email protected]"
- name: Check format
run: yarn format:check
- name: Lint code
run: yarn lint
- name: Build project
run: yarn build
- name: Test coverage
run: yarn test:coverage
- name: Upload coverage to Codecov
run: yarn codecov
publish:
name: Publish @leapfrogtechnology/sync-db package
needs: build
if: github.ref == 'refs/heads/master' && github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: node
cache: 'yarn'
- name: Run release script
run: ./release.sh compare_and_release
- name: Deploy to NPM
run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
yarn publish