Skip to content

add backend to the project (express) #2

add backend to the project (express)

add backend to the project (express) #2

Workflow file for this run

name: Deployment pipeline
on:
push:
branches:
- main
jobs:
simple_deployment_pipeline:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
# - uses: superfly/flyctl-actions/setup-flyctl@master
- name: Install dependencies and run checks for frontend
working-directory: ./frontend
run: |
npm ci
npm run lint
npm run build
npm run test