forked from Onemind-Services-LLC/react-icons-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (47 loc) · 1.43 KB
/
nodejs.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
name: Node.js CI
"on":
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: corepack
run: corepack enable
- name: Install dependencies
run: yarn --immutable
- name: Formatter
run: yarn format:ci
- name: Lint
run: yarn lint
- name: Build Packages
run: BASE_PATH=/react-icons ./build-script.sh
- uses: actions/upload-artifact@v3
with:
path: packages/_react-icons*/*.tgz
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./packages/preview/out
- name: Release
uses: ncipollo/release-action@v1
with:
artifacts: "packages/_react-icons*/*.tgz"
bodyFile: "packages/react-icons/VERSIONS"
token: ${{ secrets.GITHUB_TOKEN }}
prerelease: ${{ contains(github.ref, 'snapshot') }}
if: contains(github.ref, 'tags/')
- name: Publish react-icons
if: contains(github.ref, 'tags/')
run: npm publish packages/_react-icons/*.tgz --access public