-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(practs): upgrade to latest best (#76)
- Loading branch information
1 parent
c1b0eef
commit ab98fd5
Showing
29 changed files
with
2,550 additions
and
2,999 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
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,40 @@ | ||
name: .publish-npm | ||
|
||
on: | ||
workflow_call: | ||
secrets: | ||
npm-auth-token: | ||
required: true | ||
description: required credentials to authenticate with the aws account under which to publish | ||
|
||
jobs: | ||
publish: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: set node-version | ||
uses: actions/setup-node@v3 | ||
with: | ||
registry-url: 'https://registry.npmjs.org/' | ||
node-version-file: '.nvmrc' | ||
|
||
- name: node-modules cache get | ||
uses: actions/cache/restore@v3 | ||
id: cache | ||
with: | ||
path: ./node_modules | ||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
|
||
- name: node-modules cache miss install | ||
if: steps.cache.outputs.cache-hit != 'true' | ||
run: npm ci --ignore-scripts --prefer-offline --no-audit | ||
|
||
- name: build | ||
run: npm run build | ||
|
||
- name: publish | ||
run: npm publish --access public | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.npm-auth-token }} |
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,238 @@ | ||
name: .test | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
aws-region: | ||
type: string | ||
description: the aws region within which we should run the tests | ||
required: false | ||
aws-account-id: | ||
type: string | ||
description: the id of the account the credentials are expected to access | ||
required: false | ||
secrets: | ||
aws-access-key-id: | ||
required: false | ||
description: required credentials to authenticate with aws the aws account against which to run the tests | ||
aws-secret-access-key: | ||
required: false | ||
description: required credentials to authenticate with aws the aws account against which to run the tests | ||
|
||
jobs: | ||
install: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: set node-version | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
|
||
- name: node-modules cache get | ||
uses: actions/cache/restore@v3 | ||
id: cache | ||
with: | ||
path: ./node_modules | ||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
|
||
- name: node-modules cache miss install | ||
if: steps.cache.outputs.cache-hit != 'true' | ||
run: npm ci --ignore-scripts --prefer-offline --no-audit | ||
|
||
- name: node-modules cache set | ||
if: steps.cache.outputs.cache-hit != 'true' | ||
uses: actions/cache/save@v3 | ||
with: | ||
path: ./node_modules | ||
key: ${{ steps.cache.outputs.cache-primary-key }} | ||
|
||
# run tests in parallel | ||
test-commits: | ||
runs-on: ubuntu-latest | ||
needs: [install] | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 # we need all commits to test:commits | ||
|
||
- name: set node-version | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
|
||
- name: get node-modules from cache | ||
uses: actions/cache/restore@v3 | ||
with: | ||
path: ./node_modules | ||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
|
||
- name: test:commits | ||
run: npm run test:commits | ||
|
||
test-types: | ||
runs-on: ubuntu-latest | ||
needs: [install] | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: set node-version | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
|
||
- name: get node-modules from cache | ||
uses: actions/cache/restore@v3 | ||
with: | ||
path: ./node_modules | ||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
|
||
- name: test:types | ||
run: npm run test:types | ||
|
||
test-format: | ||
runs-on: ubuntu-latest | ||
needs: [install] | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: set node-version | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
|
||
- name: get node-modules from cache | ||
uses: actions/cache/restore@v3 | ||
with: | ||
path: ./node_modules | ||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
|
||
- name: test:format | ||
run: npm run test:format | ||
|
||
test-lint: | ||
runs-on: ubuntu-latest | ||
needs: [install] | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: set node-version | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
|
||
- name: get node-modules from cache | ||
uses: actions/cache/restore@v3 | ||
with: | ||
path: ./node_modules | ||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
|
||
- name: test:lint | ||
run: npm run test:lint | ||
|
||
test-unit: | ||
runs-on: ubuntu-latest | ||
needs: [install] | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: set node-version | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
|
||
- name: get node-modules from cache | ||
uses: actions/cache/restore@v3 | ||
with: | ||
path: ./node_modules | ||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
|
||
- name: test:unit | ||
run: THOROUGH=true npm run test:unit | ||
|
||
test-integration: | ||
runs-on: ubuntu-latest | ||
needs: [install] | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: set node-version | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
|
||
- name: get node-modules from cache | ||
uses: actions/cache/restore@v3 | ||
with: | ||
path: ./node_modules | ||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
|
||
- name: configure aws credentials | ||
if: "${{ inputs.aws-account-id != '' }}" | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
id: credentials | ||
with: | ||
aws-access-key-id: ${{ secrets.aws-access-key-id }} | ||
aws-secret-access-key: ${{ secrets.aws-secret-access-key }} | ||
aws-region: ${{ inputs.aws-region }} | ||
|
||
- name: confirm aws credentials | ||
if: "${{ inputs.aws-account-id != '' }}" | ||
run: | | ||
[[ ${{steps.credentials.outputs.aws-account-id}} != ${{ inputs.aws-account-id }} ]] \ | ||
&& echo 'wrong aws account' && exit 1 \ | ||
|| echo 'correct aws account'; | ||
- name: provision:integration-test-db | ||
run: npm run provision:integration-test-db --if-present | ||
|
||
- name: test:integration | ||
run: THOROUGH=true npm run test:integration | ||
|
||
test-acceptance-locally: | ||
runs-on: ubuntu-latest | ||
needs: [install] | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: set node-version | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version-file: '.nvmrc' | ||
|
||
- name: get node-modules from cache | ||
uses: actions/cache/restore@v3 | ||
with: | ||
path: ./node_modules | ||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
|
||
- name: configure aws credentials | ||
if: "${{ inputs.aws-account-id != '' }}" | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
id: credentials | ||
with: | ||
aws-access-key-id: ${{ secrets.aws-access-key-id }} | ||
aws-secret-access-key: ${{ secrets.aws-secret-access-key }} | ||
aws-region: ${{ inputs.aws-region }} | ||
|
||
- name: confirm aws credentials | ||
if: "${{ inputs.aws-account-id != '' }}" | ||
run: | | ||
[[ ${{steps.credentials.outputs.aws-account-id}} != ${{ inputs.aws-account-id }} ]] \ | ||
&& echo 'wrong aws account' && exit 1 \ | ||
|| echo 'correct aws account'; | ||
- name: provision:integration-test-db | ||
run: npm run provision:integration-test-db --if-present | ||
|
||
- name: test:acceptance:locally | ||
run: npm run test:acceptance:locally |
This file was deleted.
Oops, something went wrong.
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,20 @@ | ||
name: publish | ||
|
||
on: | ||
push: | ||
tags: | ||
- v* | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} # per [workflow] x [branch, tag] | ||
cancel-in-progress: true # cancel workflows for non-latest commits | ||
|
||
jobs: | ||
test: | ||
uses: ./.github/workflows/.test.yml | ||
|
||
publish: | ||
uses: ./.github/workflows/.publish-npm.yml | ||
needs: [test] | ||
secrets: | ||
npm-auth-token: ${{ secrets.NPM_TOKEN }} |
2 changes: 1 addition & 1 deletion
2
.github/workflows/pr-release-on-main.yml → .github/workflows/release.yml
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: pr-release-on-main | ||
name: release | ||
|
||
on: | ||
push: | ||
|
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,26 @@ | ||
name: review | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
|
||
permissions: | ||
pull-requests: read | ||
|
||
jobs: | ||
pullreq-title: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: test:pullreq:title | ||
uses: amannn/action-semantic-pull-request@v5 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
# https://github.com/commitizen/conventional-commit-types | ||
types: | | ||
fix | ||
feat | ||
chore |
Oops, something went wrong.