-
-
Notifications
You must be signed in to change notification settings - Fork 520
73 lines (63 loc) · 1.67 KB
/
ruby-tests.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
name: ruby-tests
on:
pull_request_target:
push:
workflow_dispatch:
inputs: {}
jobs:
build:
name:
Tests with Ruby ${{ matrix.ruby }}, Node ${{ matrix.node }} and ${{
matrix.gemfile }}
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
ruby: ["3.2", "3.3"]
node: ["18", "20"]
gemfile:
- Gemfile
if: |
github.actor == 'dependabot[bot]' && github.event_name == 'pull_request_target' ||
github.actor != 'dependabot[bot]'
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
id: bundler-cache
with:
path: vendor/bundle
key: >
${{ runner.os }}-${{ matrix.ruby }}-gems-${{
hashFiles(matrix.gemfile) }}
- uses: actions/cache@v4
id: npm-cache
with:
path: vendor/bundle
key: >
${{ runner.os }}-${{ matrix.node }}-npm-${{
hashFiles('package.json') }}
- name: Set up Node
uses: actions/[email protected]
with:
node-version: ${{ matrix.node }}
- name: Install npm dependencies
run: |
yarn install
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install gem dependencies
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
run: |
gem install bundler
bundle config path vendor/bundle
bundle update --jobs 4 --retry 3
- name: Run Tests
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
run: |
yarn compile
bundle exec rake