Skip to content

github-action: bump ruby/setup-ruby from 1.154.0 to 1.155.0 #339

github-action: bump ruby/setup-ruby from 1.154.0 to 1.155.0

github-action: bump ruby/setup-ruby from 1.154.0 to 1.155.0 #339

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@8ade135a41bc03ea155e62e844d188df1ea18608
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d
with:
node-version: "${{env.NODE_VERSION}}"
- uses: ruby/setup-ruby@d37167af451eb51448db3354e1057b75c4b268f7
with:
bundler-cache: true
- uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1
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