-
-
Notifications
You must be signed in to change notification settings - Fork 27
44 lines (40 loc) · 1.58 KB
/
verify.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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
env:
HUSKY: 0
NPM_AUTH: ${{secrets.NPM_AUTH}}
GH_TOKEN: ${{secrets.GH_TOKEN}}
strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
with:
fetch-depth: "0"
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: yarn config set registry https://registry.npmjs.org
- run: yarn
- run: yarn verify
- run: git checkout main
- run: git config --global user.email '[email protected]'
- run: git config --global user.name 'Jarvis1010'
- if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
run: echo "//registry.npmjs.org/:_authToken=${{secrets.NPM_AUTH}}" > ~/.npmrc
- if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
run: npm whoami
- if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
run: npx lerna publish --conventional-commits --yes