-
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.
add workflow to validate address-service
- Loading branch information
1 parent
fbe42df
commit 6119ad9
Showing
1 changed file
with
36 additions
and
0 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,36 @@ | ||
name: validate address-service | ||
on: | ||
push: | ||
branches: | ||
- "*" | ||
# paths: | ||
# - "address-service/src/**/*.js" | ||
# - "address-service/package*.json" | ||
workflow_dispatch: | ||
|
||
env: | ||
NODE_VERSION: "12" | ||
|
||
defaults: | ||
run: | ||
working-directory: ./address-service | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@main | ||
- uses: actions/setup-node@main | ||
with: | ||
node-version: ${NODE_VERSION} | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Unit tests w/ coverage | ||
run: npm run test:coverage | ||
- name: LINTing | ||
run: npm run test:lint | ||
# - name: OpenAPI Schema | ||
# run: npm run test:schema | ||
- name: Build step | ||
run: npm run build |