Skip to content

github-action: bump actions/setup-node from 4.0.2 to 4.1.0 #407

github-action: bump actions/setup-node from 4.0.2 to 4.1.0

github-action: bump actions/setup-node from 4.0.2 to 4.1.0 #407

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@9bb56186c3b09b4f86b1c65136769dd318469633
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af
with:
node-version: "${{env.NODE_VERSION}}"
- uses: ruby/setup-ruby@5f19ec79cedfadb78ab837f95b87734d0003c899
with:
bundler-cache: true
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c
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