Skip to content

Add drop candidate feature #755

Add drop candidate feature

Add drop candidate feature #755

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.15.0]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn ci
- name: Run the tests and generate coverage report
run: yarn test --coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
- name: Run linter
run: yarn lint
- name: Build
run: yarn build