[workflow] Tests implementation
Tests / test (push) Successful in 3m43s

This commit is contained in:
2026-05-22 22:50:54 +03:00
parent 8b90015508
commit 61b1118d6c
2 changed files with 31 additions and 17 deletions
+31
View File
@@ -0,0 +1,31 @@
name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
- name: Cache yarn dependencies
uses: actions/cache@v4
with:
path: |
node_modules
~/.cache/yarn
key: yarn-${{ hashFiles('yarn.lock') }}
restore-keys: yarn-
- run: yarn install --frozen-lockfile
- run: yarn test:report --run