Skip to content

Initial commit.

Initial commit. #6

Workflow file for this run

name: Tests
on: [push, pull_request, workflow_dispatch]
permissions:
contents: read
packages: read
jobs:
test:
name: Testing code.
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]
- uses: actions/setup-node@v4
with:
node-version: 21
- name: Installing dependencies.
run: yarn install
- name: Running tests.
run: yarn run tests
- name: Linting check.
run: yarn run lint