Skip to content

chore: update version #24

chore: update version

chore: update version #24

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