Skip to content

Merge remote-tracking branch 'origin/improvement/WRLGS-14' into w/8.2… #128

Merge remote-tracking branch 'origin/improvement/WRLGS-14' into w/8.2…

Merge remote-tracking branch 'origin/improvement/WRLGS-14' into w/8.2… #128

Workflow file for this run

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