Skip to content

Release v2.0.0

Release v2.0.0 #62

Workflow file for this run

name: Prerequisites
on:
pull_request:
types: [synchronize, opened, edited, ready_for_review, reopened, unlocked]
branches: [main, development]
push:
branches: [main, development]
permissions:
checks: write
contents: write
pull-requests: write
jobs:
Run-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm install
- name: Run tests and generate coverage
uses: ArtiomTr/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
threshold: 90