Skip to content

Commit

Permalink
github: Add first CI version
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
  • Loading branch information
patrickelectric committed May 18, 2022
1 parent a840b47 commit fbe2135
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: CI

on:
workflow_dispatch:
pull_request:
push:
schedule:
# Run every 6 days to help us stay on our toes
- cron: '0 0 */6 * *'

jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install dependencies
run: |
sudo apt install -y xvfb yarn
- name: Run yarn
run: |
yarn install
yarn build
xvfb-run --auto-servernum yarn test:ci

0 comments on commit fbe2135

Please sign in to comment.