We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e9a43f commit d58b41cCopy full SHA for d58b41c
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,32 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [ main, master ]
6
+ pull_request:
7
8
+jobs:
9
+ frontend-build:
10
+ runs-on: ubuntu-latest
11
+ defaults:
12
+ run:
13
+ working-directory: async-code-web
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ - uses: actions/setup-node@v3
17
+ with:
18
+ node-version: '20'
19
+ cache: 'npm'
20
+ cache-dependency-path: async-code-web/package-lock.json
21
+ - run: npm ci
22
+ - run: npm run build
23
24
+ backend-static-check:
25
26
27
28
+ - uses: actions/setup-python@v4
29
30
+ python-version: '3.11'
31
+ - name: Static analysis
32
+ run: python -m compileall -q server
0 commit comments