Skip to content

feat(api): user create #7

feat(api): user create

feat(api): user create #7

Workflow file for this run

name: build pipeline
on:
pull_request:
branches: ['master']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install backend dependencies
run: |
(cd backend && npm install)
- name: Doing backend tests
run: |
(cd backend && npm run test)
- name: Building backend
run: |
(cd backend && npm run build)