Docs/CI / CD

Travis CI

Travis is straightforward for Node projects. The config below runs the suite on every push and pull request.

.travis.ymlyaml
language: node_js
node_js:
  - "20"

cache:
  directories:
    - ~/.cache/ms-playwright

install:
  - npm ci
  - npx assrt install-browsers

script:
  - npx assrt run --reporter junit

after_failure:
  - tar -czf assrt-results.tar.gz assrt-results