Skip to content

chore(deps-dev): bump semantic-release from 19.0.5 to 21.0.3 #96

chore(deps-dev): bump semantic-release from 19.0.5 to 21.0.3

chore(deps-dev): bump semantic-release from 19.0.5 to 21.0.3 #96

Workflow file for this run

name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Run install
run: npm ci
- name: Run build
run: npm run build || true
- name: Run test
run: npm run test
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run semantic-release