Set up Continuous Integration via GH Actions #21
Workflow file for this run
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: Continuous Integration | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
ruby: | |
name: "Test Backend (Jekyll ${{ matrix.jekyll_version }}, Ruby ${{ matrix.ruby_version }})" | |
runs-on: "ubuntu-latest" | |
env: | |
JEKYLL_VERSION: ${{ matrix.jekyll_version }} | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby_version: ["2.7"] | |
jekyll_version: | |
- "~> 3.9" | |
- "~> 4.0" | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: "Set up Ruby ${{ matrix.ruby_version }}" | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby_version }} | |
bundler-cache: true | |
- name: Unit Tests | |
run: bundle exec rspec | |
node: | |
name: "Test Frontend (Node ${{ matrix.node_version }})" | |
runs-on: "ubuntu-latest" | |
strategy: | |
fail-fast: false | |
matrix: | |
node_version: ["12"] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: "Set up Node ${{ matrix.node_version }}" | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node_version }} | |
cache: "yarn" | |
- name: Install Dependencies | |
run: yarn install | |
- name: Build frontend and run tests | |
run: bash script/build |