-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WRLGS-11: Copy GHA test workflow from dev/8.1
This is based on an old tag that had no GHA
- Loading branch information
1 parent
f8c31c4
commit 1a3a7b1
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
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: '16' | ||
- 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 |