Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

data: Create 03-10-2023-DockerCon-2023.json #33

data: Create 03-10-2023-DockerCon-2023.json

data: Create 03-10-2023-DockerCon-2023.json #33

Workflow file for this run

name: Events
on:
pull_request:
paths:
- data/**/events/*.json
jobs:
test:
runs-on: ubuntu-latest
services:
mongo:
image: mongo
ports:
- 27017:27017
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18"
cache: "npm"
- name: install dependencies
run: npm ci
- name: Install Playwright's dependencies
run: npx playwright install chromium
- name: run tests
run: npx playwright test events.spec.js
- uses: test-summary/action@v2.0
with:
paths: "results.xml"