-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aad4162
commit 4871e82
Showing
3 changed files
with
70 additions
and
54 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/mongodb-github-action@1.10.0 | ||
|
||
- name: Cypress run | ||
uses: cypress-io/github-action@v6 | ||
with: | ||
start: pnpm start | ||
browser: chrome |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,9 @@ dist | |
public/events/* | ||
!public/events/.gitkeep | ||
|
||
# CI files | ||
dist.zip | ||
|
||
# Logs | ||
logs | ||
*.log | ||
|