Skip to content

Commit

Permalink
Merge pull request #110 from lowercasename/rk/cypress-workflow
Browse files Browse the repository at this point in the history
Cypress workflow
  • Loading branch information
lowercasename authored Oct 6, 2023
2 parents aad4162 + 4871e82 commit f390b1d
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 54 deletions.
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

0 comments on commit f390b1d

Please sign in to comment.