update dependencies #7
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: docker-test-sflight | |
on: | |
push: | |
branches: [ "run-github-actions" ] | |
jobs: | |
docker-job: | |
name: selenium-docker | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 18 ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Run docker image - selenium/standalone-chrome | |
run: | | |
docker run -d -p 4444:4444 --network host selenium/standalone-chrome | |
- name: prepare | |
run: | | |
npm ci | |
npm run prepare:test | |
- name: test sflight | |
run: | | |
SELENIUM_REMOTE_URL="http://127.0.0.1:4444/wd/hub" npm run test:sflight |