Bump braces from 3.0.2 to 3.0.3 #123
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: Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: {} | |
jobs: | |
test: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: '3.0' | |
- name: Update rubygems & bundler | |
run: | | |
ruby -v | |
gem update --system | |
- name: Install dependencies | |
run: | | |
bin/setup | |
- name: Compile extension | |
run: | | |
npm run build | |
npm run package | |
- name: Run minitest tests | |
run: | | |
xvfb-run -a node ./out/test/runMinitestTests.js | |
- name: Run rspec tests | |
run: | | |
xvfb-run -a node ./out/test/runRspecTests.js | |
- name: Run Ruby test | |
run: | | |
cd ruby && bundle exec rake |