Commit d072c77 1 parent 17f3a7e commit d072c77 Copy full SHA for d072c77
File tree 3 files changed +18
-9
lines changed
3 files changed +18
-9
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,15 @@ jobs:
10
10
build :
11
11
12
12
runs-on : ubuntu-latest
13
+
13
14
strategy :
14
- max-parallel : 4
15
+ max-parallel : 1
15
16
matrix :
16
- python-version : [3.7, 3.8]
17
+ python-version : [3.9]
18
+
19
+ defaults :
20
+ run :
21
+ working-directory : ./backend
17
22
18
23
steps :
19
24
- uses : actions/checkout@v2
30
35
python manage.py test
31
36
- name : Run flake8
32
37
run : |
33
- python manage.py test
34
- flake8 backend/
38
+ flake8 .
Original file line number Diff line number Diff line change 16
16
17
17
strategy :
18
18
matrix :
19
- node-version : [12.x]
19
+ node-version : [18.x]
20
+
21
+ defaults :
22
+ run :
23
+ working-directory : ./frontend
20
24
21
25
steps :
22
26
- uses : actions/checkout@v2
26
30
node-version : ${{ matrix.node-version }}
27
31
- run : npm ci
28
32
- run : npm run build --if-present
29
- - run : npm test
30
- - run : npm run lint
33
+ # - run: npm run format:check
34
+ # TODO: add lint step
35
+ - run : npm test --watchAll=false
Original file line number Diff line number Diff line change @@ -110,8 +110,8 @@ $ git push heroku master
110
110
- cleanup ` package.json ` with proper 'devDependencies'
111
111
112
112
- [x] fix tests
113
- - [ ] update ci
114
- - [ ] move backend and frontend to separate directories
113
+ - [x ] update ci
114
+ - [x ] move backend and frontend to separate directories
115
115
- [ ] msw mocks
116
116
- [ ] write down supported versions (update README)
117
117
- [ ] review tests. make them modern (without much mocking)
You can’t perform that action at this time.
0 commit comments