Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cypress workflow #110

Merged
merged 1 commit into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
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
54 changes: 0 additions & 54 deletions .github/workflows/build-test.yaml

This file was deleted.

67 changes: 67 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: CI / Build and test
on:
pull_request:
workflow_dispatch:
push:
branches:
- main

jobs:
install:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8

- name: Set up config files
run: cp config/config.example.toml config/config.toml

- name: Cypress install
uses: cypress-io/github-action@v6
with:
# Disable running of tests within install job
runTests: false
build: pnpm run build
continue-on-error: true

- name: Save build folder
uses: actions/upload-artifact@v3
with:
name: dist
if-no-files-found: error
path: dist

cypress-run:
runs-on: ubuntu-latest
needs: install
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8

- name: Set up config files
run: cp config/config.example.toml config/config.toml

- name: Download the build folder
uses: actions/download-artifact@v3
with:
name: dist
path: dist

- name: Start MongoDB
uses: supercharge/[email protected]

- name: Cypress run
uses: cypress-io/github-action@v6
with:
start: pnpm start
browser: chrome
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ dist
public/events/*
!public/events/.gitkeep

# CI files
dist.zip

# Logs
logs
*.log
Expand Down
Loading