chore(deps-dev): bump semantic-release from 21.1.2 to 22.0.5 #335
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
name: GitHub CI | |
on: | |
push: | |
branches: [master] | |
tags: | |
- '*' | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [14.x, 16.x, 'lts/*'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: docker-compose up -d | |
- run: npm install | |
- run: npm test | |
# - name: Coveralls | |
# uses: coverallsapp/github-action@master | |
# with: | |
# github-token: ${{ SECRETS.GITHUB_TOKEN }} | |
# flag-name: run-${{ matrix.node-version }} | |
# parallel: true | |
# coveralls: | |
# needs: test | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Coveralls Finished | |
# uses: coverallsapp/github-action@master | |
# with: | |
# github-token: ${{ SECRETS.GITHUB_TOKEN }} | |
# parallel-finished: true | |
release: | |
# Only release on push to master | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
runs-on: ubuntu-latest | |
# Waits for test jobs for each Node.js version to complete | |
needs: [test] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 'lts/*' | |
- run: npm install | |
- name: semantic-release | |
run: npm run semantic-release | |
env: | |
GH_TOKEN: ${{ secrets.DEPLOY_GH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |