Skip to content

github-action: bump ruby/setup-ruby from 1.157.0 to 1.159.0 #344

github-action: bump ruby/setup-ruby from 1.157.0 to 1.159.0

github-action: bump ruby/setup-ruby from 1.157.0 to 1.159.0 #344

Workflow file for this run

---
name: pr-tests
on: pull_request
env:
NODE_VERSION: "12.x"
PYTHON_VERSION: "3.x"
jobs:
test:
name: Run tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
with:
node-version: "${{env.NODE_VERSION}}"
- uses: ruby/setup-ruby@54a18e26dbbb1eabc604f317ade9a5788dddef81
with:
bundler-cache: true
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236
with:
python-version: "${{env.PYTHON_VERSION}}"
- run: npm ci
- run: pip install --user -r requirements.txt
- name: Node tests
run: npm test
- name: Python tests
run: |
gem install webrick
make test