Skip to content

Fix Deploy script

Fix Deploy script #1

Workflow file for this run

name: Pull Request Checks
on:
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js with Yarn
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Lint code
run: yarn lint
- name: Run tests
run: yarn test
- name: Build NestJS app
run: yarn build