-
-
Notifications
You must be signed in to change notification settings - Fork 365
53 lines (50 loc) · 1.41 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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 }}
JEKYLL_LOG_LEVEL: warn
RACK_ENV: test
strategy:
fail-fast: false
matrix:
ruby_version: ["2.7", "3.3"]
jekyll_version:
- "~> 3.9"
- "~> 4.0"
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- 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 --format documentation --force-color --backtrace
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@v2
- 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: Run tests and build frontend
run: bash script/build