Skip to content

doc: update to doc to signal no longer maintained (#51) #18

doc: update to doc to signal no longer maintained (#51)

doc: update to doc to signal no longer maintained (#51) #18

Workflow file for this run

name: Main Build
on:
push:
branches:
- main
jobs:
coverage:
runs-on: ubuntu-latest
name: Coverage
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '16.x'
cache: npm
- run: npm ci
- run: npm run test:cover
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
publish:
runs-on: ubuntu-latest
name: Versionning and Publish
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '14.x'
cache: npm
- run: npm ci
- run: npm run build
- run: npm test
- run: npm run test:cover
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release