This repository was archived by the owner on Jan 12, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +24
-11
lines changed Expand file tree Collapse file tree 1 file changed +24
-11
lines changed Original file line number Diff line number Diff line change @@ -59,12 +59,19 @@ jobs:
59
59
- uses : actions/setup-node@v3
60
60
with :
61
61
node-version : lts/*
62
- - run : npm install && npx -y playwright install-deps
63
- - uses : GabrielBB/xvfb-action@86d97bde4a65fe9b290c0b3fb92c2c4ed0e5302d # https://github.com/GabrielBB/xvfb-action/releases/tag/v1.6
64
- name : Run tests
65
- with :
66
- run : npm test
67
- working-directory : examples/${{ matrix.project }}
62
+ - name : Install dependencies
63
+ run : npm install
64
+ - name : Install Playwright
65
+ run : npx -y playwright install --with-deps
66
+ - name : Run tests
67
+ run : npm run test
68
+ env :
69
+ CI : true
70
+ # - uses: GabrielBB/xvfb-action@86d97bde4a65fe9b290c0b3fb92c2c4ed0e5302d # https://github.com/GabrielBB/xvfb-action/releases/tag/v1.6
71
+ # name: Run tests
72
+ # with:
73
+ # run: npm test
74
+ # working-directory: examples/${{ matrix.project }}
68
75
69
76
monorepo :
70
77
runs-on : ubuntu-latest
75
82
with :
76
83
node-version : lts/*
77
84
- name : Install dependencies
78
- run : npm install && npx -y playwright install-deps
79
- - uses : GabrielBB/xvfb-action@86d97bde4a65fe9b290c0b3fb92c2c4ed0e5302d # https://github.com/GabrielBB/xvfb-action/releases/tag/v1.6
80
- name : Run test:examples
81
- with :
82
- run : npm run test:examples
85
+ run : npm install
86
+ - name : Install Playwright
87
+ run : npx -y playwright install --with-deps
88
+ - name : Run test:examples
89
+ run : npm run test:examples
90
+ env :
91
+ CI : true
92
+ # - uses: GabrielBB/xvfb-action@86d97bde4a65fe9b290c0b3fb92c2c4ed0e5302d # https://github.com/GabrielBB/xvfb-action/releases/tag/v1.6
93
+ # name: Run test:examples
94
+ # with:
95
+ # run: npm run test:examples
You can’t perform that action at this time.
0 commit comments