Skip to content

Commit 9c43702

Browse files
committed
chore: update workflows
1 parent 22a8e61 commit 9c43702

File tree

5 files changed

+61
-76
lines changed

5 files changed

+61
-76
lines changed

.github/FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
github: DamianOsipiuk
12
custom: paypal.me/DamianOsipiuk

.github/workflows/ci.yml

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
jobs:
10+
commitlint:
11+
runs-on: ubuntu-latest
12+
13+
name: "Lint commit message"
14+
steps:
15+
- uses: actions/checkout@v2
16+
with:
17+
fetch-depth: 0
18+
- uses: wagoid/commitlint-github-action@v3
19+
20+
verify:
21+
runs-on: ubuntu-latest
22+
23+
strategy:
24+
matrix:
25+
node-version: [10, 12, 14, 16]
26+
27+
name: "Verify (Node ${{ matrix.node-version }})"
28+
steps:
29+
- uses: actions/checkout@v2
30+
- name: Use Node.js ${{ matrix.node-version }}
31+
uses: actions/setup-node@v2
32+
with:
33+
node-version: ${{ matrix.node-version }}
34+
- run: npm ci
35+
- run: npm run lint
36+
- run: npm run build
37+
- run: npm test
38+
env:
39+
CI: true
40+
41+
publish:
42+
# publish only when merged in master on original repo, not on PR
43+
if: github.repository == 'DamianOsipiuk/testrail-js-api' && github.ref == 'refs/heads/main'
44+
needs: [verify, commitlint]
45+
runs-on: ubuntu-latest
46+
47+
name: "Publish to NPM"
48+
steps:
49+
- uses: actions/checkout@v2
50+
- uses: actions/setup-node@v2
51+
with:
52+
node-version: 14
53+
registry-url: https://registry.npmjs.org/
54+
- run: npm ci
55+
- run: npm run build
56+
- run: npx semantic-release@17 --branches main
57+
env:
58+
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
59+
GH_TOKEN: ${{secrets.GITHUB_TOKEN}}

.github/workflows/nodejs.yml

-31
This file was deleted.

.github/workflows/npmpublish.yml

-43
This file was deleted.

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
},
1313
"scripts": {
1414
"build": "tsc",
15-
"lint": "eslint ./src/** ./tests/**",
16-
"prepare": "npm run build",
15+
"lint": "eslint tests --ext .js,.ts",
1716
"test": "jest"
1817
},
1918
"repository": {

0 commit comments

Comments
 (0)