-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (41 loc) · 1.39 KB
/
release.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
name: Release (NPM)
on:
push:
branches: ['main']
jobs:
static-checks-npm:
uses: digicatapult/shared-workflows/.github/workflows/static-checks-npm.yml@main
with:
matrix_commands: '["lint", "depcheck", "check", "xss-scan"]'
tests-npm:
uses: digicatapult/shared-workflows/.github/workflows/tests-npm.yml@main
with:
npm_build_command: 'npm run tsoa:build'
pre_test_command: 'npm run db:migrate'
docker_compose_file: docker-compose.yml
e2e-tests-npm:
uses: digicatapult/shared-workflows/.github/workflows/tests-e2e-npm.yml@main
with:
docker_compose_file: docker-compose.e2e.yml
test_command: 'docker compose -f docker-compose.e2e.yml up --exit-code-from e2e-tests --abort-on-container-exit --quiet-pull'
permissions:
contents: write
secrets: inherit
build-docker:
needs: [e2e-tests-npm, tests-npm, static-checks-npm]
uses: digicatapult/shared-workflows/.github/workflows/build-docker.yml@main
with:
push_dockerhub: true
push_ghcr: true
permissions:
packages: write
contents: write
secrets:
DOCKERHUB_TOKEN: ${{ secrets.SQNC_DOCKERHUB_TOKEN }}
DOCKERHUB_USERNAME: ${{ secrets.SQNC_DOCKERHUB_USERNAME }}
release-github:
needs: [build-docker]
uses: digicatapult/shared-workflows/.github/workflows/release-github.yml@main
permissions:
contents: write
secrets: inherit