Skip to content

Remove manual build step #47

Remove manual build step

Remove manual build step #47

Workflow file for this run

---
name: "tests"
'on':
pull_request:
jobs:
tox:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build tox container
run: |
docker build -f tests/tox/Dockerfile -t tox:01 .
- name: run tox container
run: |
docker run tox:01
js:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm test