-
Notifications
You must be signed in to change notification settings - Fork 15
103 lines (80 loc) · 2.24 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
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@v4
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- 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@v4
with:
token: ${{ secrets.RIBBY_GITHUB_TOKEN }}
- name: Set git user
run: |
git config user.name "Ribby"
git config user.email "[email protected]"
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
- name: Install gems
run: |
gem install github_changelog_generator
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- name: Install node dependencies
run: yarn
- name: Install hub
run: |
sudo apt update
sudo apt install hub
hub --version
- name: Run release script
env:
GITHUB_TOKEN: ${{ secrets.RIBBY_GITHUB_TOKEN }}
RIBBY_GITHUB_TOKEN: ${{ secrets.RIBBY_GITHUB_TOKEN }}
run: ./release.sh compare_and_release
- name: Deploy to NPM
run: |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
yarn publish