Skip to content

Commit ec33320

Browse files
author
webdev778
committed
updated CI
1 parent ffe835a commit ec33320

File tree

2 files changed

+9
-66
lines changed

2 files changed

+9
-66
lines changed

.github/workflows/rake.yml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
tags: [ v* ]
77
pull_request:
88

9-
# https://github.community/t/use-working-directory-for-entire-job/16747/12
109
defaults:
1110
run:
1211
working-directory: ./ruby
@@ -35,23 +34,22 @@ jobs:
3534

3635
env:
3736
BUNDLE_WITHOUT: "secryst"
37+
SKIP_JS: "1"
3838

3939
steps:
40-
- uses: actions/checkout@v2
40+
- name: Checkout repository and submodules
41+
uses: actions/checkout@v2
4142
with:
4243
submodules: true
4344

44-
- uses: actions/setup-node@v2
45-
with:
46-
node-version: '15'
47-
48-
- if: matrix.os == 'macos-latest'
49-
run: brew install automake autoconf
50-
51-
- uses: ruby/setup-ruby@v1
45+
- name: Use Ruby
46+
uses: ruby/setup-ruby@v1
5247
with:
5348
ruby-version: ${{ matrix.ruby }}
5449
bundler-cache: true
5550
working-directory: ./ruby
5651

57-
- run: bundle exec rspec -f f
52+
- name: Run RSpecs
53+
run: |
54+
bundle install --with=jsexec
55+
bundle exec rspec -f f

.github/workflows/test.yml

Lines changed: 0 additions & 55 deletions
This file was deleted.

0 commit comments

Comments
 (0)