-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
121 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
name: CI / App | ||
|
||
on: | ||
pull_request: | ||
branches: [dev, stg, prd] | ||
types: [opened, reopened, synchronize, edited] | ||
paths: | ||
- 'src/**' | ||
- 'docker-compose.yml' | ||
- '.github/workflows/ci-app.yml' | ||
|
||
env: | ||
node_version: "18.x" | ||
FORCE_COLOR: 3 | ||
|
||
jobs: | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ env.node_version }} | ||
cache: npm | ||
cache-dependency-path: '**/package-lock.json' | ||
|
||
- name: npm ci | ||
working-directory: src | ||
run: npm ci --prefer-offline | ||
|
||
- name: npm test | ||
working-directory: src | ||
run: npm test | ||
|
||
- name: Report test coverage to Codecov | ||
uses: codecov/codecov-action@v3 | ||
if: env.CODECOV_TOKEN | ||
env: | ||
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | ||
|
||
audit: | ||
name: Audit | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ env.node_version }} | ||
|
||
# We don't need to install deps to audit them | ||
|
||
- name: npm audit | ||
working-directory: src | ||
run: npm audit --audit-level=critical | ||
|
||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ env.node_version }} | ||
cache: npm | ||
cache-dependency-path: '**/package-lock.json' | ||
|
||
- name: npm ci | ||
working-directory: src | ||
run: npm ci --prefer-offline | ||
|
||
- name: npm lint | ||
working-directory: src | ||
run: npm run lint | ||
|
||
docker: | ||
name: Docker Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: docker build | ||
uses: docker/build-push-action@v3 | ||
with: | ||
context: src | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
|
||
automerge: | ||
if: github.base_ref == 'dev' # Only automerge into dev branch | ||
name: Automerge | ||
runs-on: ubuntu-latest | ||
needs: [test, audit, lint, docker] | ||
permissions: | ||
pull-requests: write | ||
contents: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Auto-merge Dependabot Pull Request | ||
uses: fastify/github-action-merge-dependabot@v3.4.1 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
target: minor | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters