-
Notifications
You must be signed in to change notification settings - Fork 4
46 lines (36 loc) · 1022 Bytes
/
tests.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: E2E tests
on:
push:
branches: ['develop']
pull_request:
branches: ['develop']
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Dependencies and build
run: npm install
- name: Install Cosma
run: npm install . --global
- name: Build cosmoscopes
run: sh ./e2e/exec-modelize.sh
- name: Run unit tests
run: npm run test:unit -- --verbose
- name: Run E2E tests
run: npm run test:e2e
- name: Upload /temp directory
uses: actions/upload-artifact@v3
if: failure()
with:
name: cypress-screenshots
path: temp