Skip to content

Fix retro pastretro #129

Fix retro pastretro

Fix retro pastretro #129

Workflow file for this run

name: Build
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.0.x
uses: actions/setup-node@v1
with:
node-version: 18.x
- run: yarn
env:
CI: true
- run: |
cp ./packages/server/.env.example ./packages/server/.env
- name: Build client
run: yarn workspace client build
- name: Run client tests
run: echo Skipping client tests for now