Skip to content

feat!: update deps and add export map #1

feat!: update deps and add export map

feat!: update deps and add export map #1

Workflow file for this run

name: Run Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Run Testing Suite
runs-on: ubuntu-latest
steps:
- name: Checking out Repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
- name: Install Dependencies
run: yarn
- name: Run lint
run: yarn lint
- name: Run Tests
run: yarn test
- name: Build Project
run: yarn build