Skip to content

feat: rust-based backend_new app #111

feat: rust-based backend_new app

feat: rust-based backend_new app #111

Workflow file for this run

name: Main pipeline
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js v18
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: npm install
- run: cp apps/backend/.env.example apps/backend/.env
- run: npx nx affected -t build --skip-nx-cache
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Node.js v18
uses: actions/setup-node@v3
with:
node-version: '18.x'
- run: npm install
- run: npx nx affected -t lint --skip-nx-cache