-
Notifications
You must be signed in to change notification settings - Fork 18
136 lines (111 loc) · 3.69 KB
/
lint_and_test.yaml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
name: Test Templates
on:
push:
paths-ignore:
- 'dist/**'
schedule:
- cron: '0 0 * * *'
jobs:
lint_and_test:
name: Lint and test (without templates)
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: 'npm'
- name: Get Node.js version
id: get-node-version
run: echo "version=$(node --version | tr -d 'v' | cut -d '.' -f 1)" >> "$GITHUB_OUTPUT"
- name: Cache node_modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-node-${{ steps.get-node-version.outputs.version }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-${{ steps.get-node-version.outputs.version }}-
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Test building templates
run: npm run build
- name: Test template manifest
run: npm run test-without-templates
test-node-templates:
name: Test Node.js templates
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [ 16, 18 ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Cache node_modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-${{ matrix.node-version }}
- name: Install dependencies
run: |
npm install
npm install -g apify-cli
./node_modules/.bin/playwright install chromium --with-deps
- name: Test Node.js templates
run: npm run test-node-templates
env:
APIFY_TOKEN: ${{ secrets.APIFY_TEST_USER_API_TOKEN }}
OPENAI_API_KEY: ${{ secrets.APIFY_SERVICE_ACCOUNT_OPENAI_API_KEY }}
test-python-templates:
name: Test Python templates
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
cache: 'npm'
- name: Get Node.js version
id: get-node-version
run: echo "version=$(node --version | tr -d 'v' | cut -d '.' -f 1)" >> "$GITHUB_OUTPUT"
- name: Cache node_modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-node-${{ steps.get-node-version.outputs.version }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-${{ steps.get-node-version.outputs.version }}-
- name: Install dependencies
run: |
npm install
npm install -g apify-cli
./node_modules/.bin/playwright install chromium --with-deps
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Chrome and Chromedriver
run: |
npx @puppeteer/browsers install chrome@113.0.5672.63
npx @puppeteer/browsers install chromedriver@113.0.5672.63
- name: Test Python templates
run: npm run test-python-templates
env:
APIFY_TOKEN: ${{ secrets.APIFY_TEST_USER_API_TOKEN }}