github-action: bump actions/checkout from 4.1.0 to 4.1.1 #342
Workflow file for this run
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: 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@5cfe23c062c0aac352e765b1b7cc12ea5255ccc4 | |
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 |