Skip to content

fix: remove non-existent imports #10

fix: remove non-existent imports

fix: remove non-existent imports #10

Workflow file for this run

name: Test
on:
push:
branches: ["main", "production"]
pull_request:
types: [opened, synchronize]
jobs:
build:
name: Automated Tests
timeout-minutes: 15
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: pnpm/action-setup@v3
with:
version: 8
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Test
run: pnpm test