Skip to content

feat: added new content (09.2023) #256

feat: added new content (09.2023)

feat: added new content (09.2023) #256

Workflow file for this run

name: Unit and Integration Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [20]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run Vitest
run: npm run test