We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fac5037 commit f643f5aCopy full SHA for f643f5a
.github/workflows/ci.yml
@@ -2,7 +2,7 @@ name: Node.js CI
2
3
on:
4
pull_request:
5
- branches: [ '**' ]
+ branches: ['**']
6
7
jobs:
8
commitlint:
@@ -34,3 +34,31 @@ jobs:
34
- uses: actions/setup-node@v2
35
- run: npm ci
36
- run: npm test
37
+
38
+ e2e_tests:
39
+ runs-on: ubuntu-latest
40
41
+ services:
42
+ backend:
43
+ image: cr.yandex/yc/yandex-docker-local-ydb
44
+ ports:
45
+ - 2135:2135
46
+ - 8765:8765
47
+ options: --hostname localhost -e YDB_ALLOW_ORIGIN="http://localhost:3000"
48
49
+ steps:
50
+ - uses: actions/checkout@v2
51
+ with:
52
+ fetch-depth: 0
53
+ - uses: actions/setup-node@v2
54
55
+ node-version: 18
56
57
+ - name: Install dependencies
58
+ run: npm ci
59
60
+ - name: Install Plawright deps
61
+ run: npm run test:e2e:install
62
63
+ - name: Run Playwright tests
64
+ run: npm run test:e2e
0 commit comments