-
-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (33 loc) · 976 Bytes
/
build.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
name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
# https://www.npmjs.com/package/selenium-webdriver#projected-support-schedule
node-version-file: .nvmrc
- name: Install dependencies
run: yarn --frozen-lockfile --prefer-offline
- name: Run async-await
run: yarn async-await
- name: Run build
run: node -e 'require("./recipes/build").quit()'
- name: Run chrome-profile
run: yarn chrome-profile
- name: Run cucumber
run: yarn cucumber
- name: Run find
run: yarn find
- name: Run jest
run: yarn jest
- name: Run mocha
run: yarn mocha
- name: Run screenshot
run: yarn screenshot
- name: Run wait-until
run: yarn wait-until