forked from nearform/titus
-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (51 loc) · 1.3 KB
/
backend-ci.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
50
51
52
53
54
55
56
57
58
59
60
name: Backend CI
on:
push:
paths:
- '.github/workflows/backend-ci.yml'
- 'packages/titus-backend/**'
pull_request:
paths:
- '.github/workflows/backend-ci.yml'
- 'packages/titus-backend/**'
jobs:
integration-checks:
name: 'Linting, Testing'
runs-on: ubuntu-latest
env:
CI: true
strategy:
matrix:
node-version: [12, 14, 16]
steps:
- name: Checking out code
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Installing Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Installing dependencies
working-directory: packages/titus-backend
run: |
npm ci
- name: Running lint check
working-directory: packages/titus-backend
run: |
npm run lint
- name: Running tests
working-directory: packages/titus-backend
run: |
npm run create:env
npm run test
automerge:
needs: integration-checks
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}