-
Notifications
You must be signed in to change notification settings - Fork 326
43 lines (43 loc) · 973 Bytes
/
workflow.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
name: CI
on:
push:
branches:
- master
pull_request:
jobs:
jekyll:
name: Run Jekyll Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.2
bundler-cache: true
- run: script/run_jekyll.sh
validate-json:
name: Validate JSON
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.2
bundler-cache: true
- run: script/validate_json.rb
ping-websites:
name: Ping Websites
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.2
bundler-cache: true
- run: script/ping_websites.rb
check-files-formatting:
name: Check Files Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: script/check_files_formatting.sh