-
Notifications
You must be signed in to change notification settings - Fork 7
48 lines (42 loc) · 1.12 KB
/
pr_validate.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Validate Driver
on:
pull_request:
jobs:
validate:
runs-on: ubuntu-latest
services:
core:
image: fauna/faunadb:latest
ports:
- 8443:8443
volumes:
- ./docker/feature-flags.json:/etc/feature-flag-periodic.d/feature-flags.json
alt_core:
image: fauna/faunadb:latest
ports:
- 7443:8443
volumes:
- ./docker/feature-flags.json:/etc/feature-flag-periodic.d/feature-flags.json
strategy:
matrix:
node: ["18", "20"]
fail-fast: false
steps:
- name: FF Permission Fix
run: sudo chown -R $USER:$USER /home/runner/work/fauna-js
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: "yarn"
- name: Test
uses: borales/actions-yarn@v4
with:
cmd: "test:ci"
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure()
with:
name: Jest Tests ${{ matrix.node }}
path: reports/jest-*.xml
reporter: jest-junit