Skip to content

feat!: big refactor, tests & features #32

feat!: big refactor, tests & features

feat!: big refactor, tests & features #32

Workflow file for this run

# SPDX-FileCopyrightText: 2024 KindSpells Labs S.L.
#
# SPDX-License-Identifier: MIT
name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
merge_group:
branches: [ main]
defaults:
run:
working-directory: .
jobs:
build:
strategy:
matrix:
node-version: [ 18, 20 ]
os: [ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repository # v4.1.1
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Install PNPM # v3.0.0
uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d
with:
version: '8.15.1'
- name: Use Node.js ${{ matrix.node-version }} # v4.0.2
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run Linters
run: pnpm lint
- name: Run Unit Tests
run: pnpm test:unit:coverage
- name: Run End-to-End Tests
run: pnpm test:e2e:coverage