Skip to content

feat: added docker-compose setup #1

feat: added docker-compose setup

feat: added docker-compose setup #1

name: Inspection & Test
on:
pull_request:
branches:
- "master"
- "release/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
# Checkout the code on the runner
- uses: actions/checkout@v3
# Install Node.js
- uses: actions/setup-node@v3
with:
node-version: 20
# Install dependencies
- run: npm ci
# Check Formatting
- run: npm run format:check
# Check linting
- run: npm run lint:check
# Run tests
- run: npm test