Skip to content

Merge pull request #22 from currents-dev/feat/add-use-api #23

Merge pull request #22 from currents-dev/feat/add-use-api

Merge pull request #22 from currents-dev/feat/add-use-api #23

Workflow file for this run

name: Unit tests action
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions: read-all
jobs:
test:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm install --legacy-peer-deps
- name: Run unit tests
run: npm test