This repository has been archived by the owner on Nov 15, 2023. It is now read-only.
Deprecation warning #50
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
# GitHub Actions workflow | |
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions | |
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/workflow-syntax-for-github-actions | |
# https://help.github.com/en/actions/automating-your-workflow-with-github-actions/contexts-and-expression-syntax-for-github-actions | |
name: CI-CD | |
on: | |
push: | |
branches: | |
- "*" | |
tags-ignore: | |
- "*" | |
schedule: | |
- cron: "0 0 1 * *" | |
jobs: | |
test: | |
name: Node ${{ matrix.node }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: true | |
matrix: | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
node: | |
- 10 | |
- 12 | |
- 14 | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
- name: Install Node ${{ matrix.node }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Run linter | |
run: npm run lint | |
- name: Run tests | |
run: npm run coverage | |
- name: Send code coverage results to Coveralls | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel: true | |
coverage: | |
name: Code Coverage | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
needs: test | |
steps: | |
- name: Let Coveralls know that all tests have finished | |
uses: coverallsapp/[email protected] | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel-finished: true | |
deploy: | |
name: Publish to NPM | |
if: github.ref == 'refs/heads/master' | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
needs: test | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
- name: Install Node | |
uses: actions/setup-node@v1 | |
- name: Install dependencies | |
run: npm ci | |
- name: Publish to NPM | |
uses: JS-DevTools/npm-publish@v1 | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
- name: Prepare the non-scoped packaged | |
run: | | |
cp LICENSE *.md dist | |
VERSION=$(node -e "console.log(require('./package.json').version)") | |
sed -i "s/X.X.X/${VERSION}/g" dist/package.json | |
- name: Publish the non-scoped package to NPM | |
uses: JS-DevTools/npm-publish@v1 | |
with: | |
token: ${{ secrets.NPM_TOKEN }} | |
package: dist/package.json |