Skip to content

Feature/order

Feature/order #15

Workflow file for this run

name: CI
on:
pull_request:
branches: ['staging']
paths-ignore:
- '*.md'
jobs:
ci:
name: Build and test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Nodejs ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Setup env file
run: |
echo VITE_BACKEND_URL=${{ vars.BACKEND_URL }} >> .env
- name: Install dependencies
run: yarn
- name: Build
run: yarn build