chore(deps-dev): bump eslint-plugin-promise from 6.2.0 to 6.6.0 #2720
This file contains hidden or 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: ci | |
on: | |
pull_request: | |
branches: | |
- gh-pages | |
push: | |
branches: | |
- gh-pages | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4 # https://github.com/ruby/setup-ruby/releases/tag/v1.207.0 | |
with: | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install Node.js dependencies | |
run: npm install | |
- name: Run tests | |
shell: bash | |
run: npm test | |
- name: Jekyll Build | |
run: bundle exec jekyll build | |
- name: Check Docker support | |
shell: bash | |
run: | | |
docker --version | |
make build |