-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from etn-ccis/dev
dev to master PR for R32 release
- Loading branch information
Showing
352 changed files
with
37,221 additions
and
13,585 deletions.
There are no files selected for viewing
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
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,102 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
branches: ['dev', 'master'] | ||
pull_request: | ||
branches: ['dev', 'master'] | ||
pull_request_target: | ||
types: | ||
- opened | ||
branches: | ||
- '*/*' | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: read | ||
|
||
jobs: | ||
prettier_lint: | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [20.x] | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'yarn' | ||
- run: yarn | ||
- run: yarn prettier:check | ||
- run: yarn lint | ||
|
||
publish_blank_template: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev') }} | ||
needs: prettier_lint | ||
strategy: | ||
matrix: | ||
node-version: [20.x] | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
BRANCH: ${{ github.ref == 'refs/heads/master' && 'master' || 'dev' }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
registry-url: 'https://registry.npmjs.org' | ||
- run: yarn --immutable | ||
working-directory: blank-typescript | ||
- run: npm run publish:package -- -b ${{env.BRANCH}} | ||
working-directory: blank-typescript | ||
|
||
publish_routing_template: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev') }} | ||
needs: prettier_lint | ||
strategy: | ||
matrix: | ||
node-version: [20.x] | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
BRANCH: ${{ github.ref == 'refs/heads/master' && 'master' || 'dev' }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
registry-url: 'https://registry.npmjs.org' | ||
- run: yarn --immutable | ||
working-directory: routing-typescript | ||
- run: npm run publish:package -- -b ${{env.BRANCH}} | ||
working-directory: routing-typescript | ||
|
||
publish_auth_template: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev') }} | ||
needs: prettier_lint | ||
strategy: | ||
matrix: | ||
node-version: [20.x] | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
BRANCH: ${{ github.ref == 'refs/heads/master' && 'master' || 'dev' }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
registry-url: 'https://registry.npmjs.org' | ||
- run: yarn --immutable | ||
working-directory: authentication-typescript | ||
- run: npm run publish:package -- -b ${{env.BRANCH}} | ||
working-directory: authentication-typescript |
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
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.