2022-05-08 12:55:16 +00:00
|
|
|
name: End-to-end tests
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
|
|
cypress-run:
|
2023-12-14 00:00:48 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-05-08 12:55:16 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-12-14 00:00:48 +00:00
|
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup ruby
|
|
|
|
uses: ruby/setup-ruby@v1
|
2022-05-08 12:55:16 +00:00
|
|
|
with:
|
2023-12-14 00:00:48 +00:00
|
|
|
ruby-version: 3.2.2
|
|
|
|
- name: Install gems
|
2022-05-08 12:55:16 +00:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2023-12-14 00:00:48 +00:00
|
|
|
run: gem install jekyll bundler
|
|
|
|
# - name: Run Cypress
|
|
|
|
# uses: cypress-io/github-action@v2
|
|
|
|
# with:
|
|
|
|
# working-directory: docs
|
|
|
|
# install-command: npm install
|
|
|
|
# build: npm run bulma-sass
|
|
|
|
# start: jekyll serve --host 127.0.0.1 --port 4000
|
|
|
|
# wait-on: "http://127.0.0.1:4000"
|