A Docker image with all dependencies pre-installed. Just add your NPM packages (including Cypress) and run the tests. See Cypress Docker docs and Cypress CI guide.
Sample Dockerfile
FROM cypress/base:16.5.0
RUN npm install --save-dev cypress
RUN $(npm bin)/cypress verify
RUN $(npm bin)/cypress run