feat: add captcha feature #14
Workflow file for this run
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: PR Tests | |
on: [pull_request] | |
jobs: | |
build: | |
name: Build, lint, test and release on Node 19 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Use Node 19 | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 19 | |
- name: Install dependencies | |
run: yarn | |
- name: Build | |
run: yarn build | |
- name: Lint | |
run: yarn lint | |
- name: Test | |
run: yarn test:coverage | |
- name: Coverage | |
run: npx codecov -f coverage/*.json |