Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 4 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
mongodb-version: ${{ matrix.mongodb-version }}

- name: Install dependencies
run: npm ci
run: npm ci --no-fund

# for now only check the types of the server
# tsconfig isn't quite set up right to respect what vite accepts
Expand Down Expand Up @@ -75,22 +75,11 @@ jobs:
- name: Build frontend
run: npm run build-ui

- name: Save build folder
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
with:
name: build-ubuntu-node-${{ matrix.node-version }}-mongo-${{ matrix.mongodb-version }}
Comment thread
jescalada marked this conversation as resolved.
if-no-files-found: error
path: build

- name: Download the build folders
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8
with:
name: build-ubuntu-node-${{ matrix.node-version }}-mongo-${{ matrix.mongodb-version }}
path: build

- name: Run cypress test
uses: cypress-io/github-action@4c06c48f3ffea349b7189aa06dfcda47a9fa7b92 # v7.1.8
with:
# skip the action's internal npm ci — dependencies are already installed above
install: false
start: npm start &
wait-on: 'http://localhost:3000'
wait-on-timeout: 120
Expand Down Expand Up @@ -121,7 +110,7 @@ jobs:
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AppModelUnlock" /t REG_DWORD /f /v "AllowDevelopmentWithoutDevLicense" /d "1"

- name: Install dependencies
run: npm ci
run: npm ci --no-fund

- name: Check Types (Server)
run: npm run check-types:server
Expand Down
Loading