Merge pull request #26 from sylhare/dependabot/bundler/rexml-3.3.9 #80
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
name: Cypress Tests | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 20.x ] | |
ruby: [ '3.1' ] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Use Ruby ${{ matrix.ruby }} | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Run Kanji blog | |
run: | | |
sudo apt-get -yqq install libpq-dev | |
gem install bundler | |
bundle install --jobs 4 --retry 3 | |
bundle exec jekyll serve & | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Run Cypress tests | |
run: | | |
cd ./assets/js/gulp/ | |
npm install | |
npm run test |