-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore: Adjust ci workflow to auto publish
- Loading branch information
1 parent
206c284
commit b876f0c
Showing
1 changed file
with
43 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,54 @@ | ||
name: Run Tests | ||
name: CI and Conditional Publish | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
build-and-test: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [16.x] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Use Node.js 16.x | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '16' | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Build the package | ||
run: npm run build | ||
|
||
- name: Run tests | ||
run: npm run test | ||
|
||
publish: | ||
needs: build-and-test | ||
runs-on: ubuntu-latest | ||
if: github.ref == 'refs/heads/main' && github.event_name == 'push' | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
|
||
- name: Check if version changed | ||
id: version-check | ||
uses: EndBug/version-check@v1 | ||
with: | ||
file: 'package.json' | ||
|
||
- name: Set up Node.js | ||
if: steps.version-check.outputs.changed == 'true' | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- run: npm cache clean --force | ||
- run: npm ci | ||
- run: npm run test | ||
node-version: '16' | ||
registry-url: 'https://registry.npmjs.org/' | ||
|
||
- name: Install dependencies | ||
if: steps.version-check.outputs.changed == 'true' | ||
run: npm ci | ||
|
||
- name: Publish to npm | ||
if: steps.version-check.outputs.changed == 'true' | ||
run: npm publish | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} |