Skip to content

Commit d072c77

Browse files
committed
chore: update versions in CI
1 parent 17f3a7e commit d072c77

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed

.github/workflows/django.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,15 @@ jobs:
1010
build:
1111

1212
runs-on: ubuntu-latest
13+
1314
strategy:
14-
max-parallel: 4
15+
max-parallel: 1
1516
matrix:
16-
python-version: [3.7, 3.8]
17+
python-version: [3.9]
18+
19+
defaults:
20+
run:
21+
working-directory: ./backend
1722

1823
steps:
1924
- uses: actions/checkout@v2
@@ -30,5 +35,4 @@ jobs:
3035
python manage.py test
3136
- name: Run flake8
3237
run: |
33-
python manage.py test
34-
flake8 backend/
38+
flake8 .

.github/workflows/node.js.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [12.x]
19+
node-version: [18.x]
20+
21+
defaults:
22+
run:
23+
working-directory: ./frontend
2024

2125
steps:
2226
- uses: actions/checkout@v2
@@ -26,5 +30,6 @@ jobs:
2630
node-version: ${{ matrix.node-version }}
2731
- run: npm ci
2832
- 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

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ $ git push heroku master
110110
- cleanup `package.json` with proper 'devDependencies'
111111

112112
- [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
115115
- [ ] msw mocks
116116
- [ ] write down supported versions (update README)
117117
- [ ] review tests. make them modern (without much mocking)

0 commit comments

Comments
 (0)