-
Notifications
You must be signed in to change notification settings - Fork 8
49 lines (46 loc) · 1.08 KB
/
test-and-lint.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: Build and Test
on:
push:
branches: ['main']
pull_request:
branches: ['main']
permissions:
contents: read
jobs:
cdk-build:
name: CDK Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install dependencies
run: |
npm install
- name: Run tests
run: |
npm run test
pre-commit:
name: Run All Pre-Commit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install Chatbot dependencies
working-directory: ./lib/user-interface/react
run: |
npm install
- name: Install CDK dependencies
working-directory: ./
run: |
npm install
- uses: pre-commit/[email protected]