Skip to content

[WAD-5752] test(nestjs-aop): Clearly separate the test fixtures #61

[WAD-5752] test(nestjs-aop): Clearly separate the test fixtures

[WAD-5752] test(nestjs-aop): Clearly separate the test fixtures #61

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- 'v*'
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2.2.4
with:
version: 8
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: |
pnpm build
- name: Test
run: |
pnpm test