-
Notifications
You must be signed in to change notification settings - Fork 46
49 lines (38 loc) · 1.11 KB
/
classifier-test.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
49
name: Classifier test
on:
schedule:
- cron: '0 0 1 * *'
env:
APP_NAME: recognize
jobs:
classifier:
runs-on: ubuntu-latest
name: Test classifier
strategy:
fail-fast: false
matrix:
pure-js-mode: ['true', 'false']
steps:
- name: Checkout app
uses: actions/checkout@v2
- name: Read package.json node and npm engines version
uses: skjnldsv/[email protected]
id: versions
with:
fallbackNode: '^12'
fallbackNpm: '^6'
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@v2
with:
node-version: ${{ steps.versions.outputs.nodeVersion }}
- name: Set up npm ${{ steps.versions.outputs.npmVersion }}
run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}"
- name: Install app
run: |
make all
- name: Run classifier tests
env:
FLICKR_API_KEY: ${{ secrets.FLICKR_API_KEY }}
RECOGNIZE_PUREJS: ${{ matrix.pure-js-mode }}
run: |
node tests/tests.js