Skip to content

github-action: bump actions/upload-pages-artifact from 2.0.0 to 3.0.0 #360

github-action: bump actions/upload-pages-artifact from 2.0.0 to 3.0.0

github-action: bump actions/upload-pages-artifact from 2.0.0 to 3.0.0 #360

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@8f152de45cc393bb48ce5d89d36b731f54556e65
with:
node-version: "${{env.NODE_VERSION}}"
- uses: ruby/setup-ruby@af848b40be8bb463a751551a1180d74782ba8a72
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