Bump to 8.2.0 #111
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: Tests | |
on: | |
push: | |
branches-ignore: | |
- development/** | |
- q/*/** | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkokut | |
uses: actions/checkout@v4 | |
- name: Install deps | |
run: sudo apt-get update -q | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
- name: Install Yarn | |
run: npm install -g yarn | |
- name: install dependencies | |
run: yarn install --frozen-lockfile | |
- name: run lint | |
run: echo "linter is disabled temporarily ()" || yarn run --silent lint -- --max-warnings 0 | |
- name: run lint_md | |
run: yarn --silent lint_md | |
- name: run test | |
run: yarn test | |
- name: run coverage | |
run: yarn coverage |