update
This commit is contained in:
33
.github/workflows/ci.yaml
vendored
33
.github/workflows/ci.yaml
vendored
@ -14,18 +14,31 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
node: [ '14', '13', '12' ]
|
node: [ '14', '13', '12' ]
|
||||||
os: [ ubuntu-latest ]
|
os: [ windows-latest, ubuntu-latest ]
|
||||||
name: Test with Node v${{ matrix.node }} on ${{ matrix.os }}
|
name: Test with Node v${{ matrix.node }} on ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
|
- name: Tell if project is using npm or yarn
|
||||||
|
id: _1
|
||||||
|
uses: garronej/github_actions_toolkit@v1.11
|
||||||
|
with:
|
||||||
|
action_name: tell_if_project_uses_npm_or_yarn
|
||||||
|
owner: ${{github.repository_owner}}
|
||||||
|
repo: ${{github.event.repository.name}}
|
||||||
|
branch: ${{github.ref}}
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node }}
|
node-version: ${{ matrix.node }}
|
||||||
- run: npm ci
|
- if: steps._1.npm_or_yarn == 'yarn'
|
||||||
- run: npm run build
|
run: |
|
||||||
- run: npm run test
|
yarn install --frozen-lockfile
|
||||||
|
yarn run build
|
||||||
|
yarn run test
|
||||||
|
- if: steps._1.npm_or_yarn == 'npm'
|
||||||
|
run: |
|
||||||
|
npm ci
|
||||||
|
npm run build
|
||||||
|
npm run test
|
||||||
trigger_publish:
|
trigger_publish:
|
||||||
name: Trigger publish.yaml workflow if package.json version updated ( and secrets.PAT is set ).
|
name: Trigger publish.yaml workflow if package.json version updated ( and secrets.PAT is set ).
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -37,7 +50,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Get version on latest
|
- name: Get version on latest
|
||||||
id: v_latest
|
id: v_latest
|
||||||
uses: garronej/github_actions_toolkit@v1.9
|
uses: garronej/github_actions_toolkit@v1.11
|
||||||
with:
|
with:
|
||||||
action_name: get_package_json_version
|
action_name: get_package_json_version
|
||||||
owner: ${{github.repository_owner}}
|
owner: ${{github.repository_owner}}
|
||||||
@ -47,7 +60,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Get version on develop
|
- name: Get version on develop
|
||||||
id: v_develop
|
id: v_develop
|
||||||
uses: garronej/github_actions_toolkit@v1.9
|
uses: garronej/github_actions_toolkit@v1.11
|
||||||
with:
|
with:
|
||||||
action_name: get_package_json_version
|
action_name: get_package_json_version
|
||||||
owner: ${{github.repository_owner}}
|
owner: ${{github.repository_owner}}
|
||||||
@ -57,7 +70,7 @@ jobs:
|
|||||||
|
|
||||||
- name: 'Trigger the ''publish'' workflow'
|
- name: 'Trigger the ''publish'' workflow'
|
||||||
if: ${{ !!env.PAT && steps.v_develop.outputs.compare_result == '1' }}
|
if: ${{ !!env.PAT && steps.v_develop.outputs.compare_result == '1' }}
|
||||||
uses: garronej/github_actions_toolkit@v1.9
|
uses: garronej/github_actions_toolkit@v1.11
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
GITHUB_TOKEN: ${{ secrets.PAT }}
|
||||||
with:
|
with:
|
||||||
@ -73,4 +86,4 @@ jobs:
|
|||||||
steps.v_develop.outputs.version,
|
steps.v_develop.outputs.version,
|
||||||
github.event.repository.name
|
github.event.repository.name
|
||||||
)
|
)
|
||||||
}}
|
}}
|
20
.github/workflows/publish.yaml
vendored
20
.github/workflows/publish.yaml
vendored
@ -8,7 +8,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Synchronize package.json and package-lock.json version if needed.
|
- name: Synchronize package.json and package-lock.json version if needed.
|
||||||
uses: garronej/github_actions_toolkit@v1.9
|
uses: garronej/github_actions_toolkit@v1.11
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
GITHUB_TOKEN: ${{ secrets.PAT }}
|
||||||
with:
|
with:
|
||||||
@ -19,7 +19,7 @@ jobs:
|
|||||||
commit_author_email: ts_ci@github.com
|
commit_author_email: ts_ci@github.com
|
||||||
- name: Update CHANGELOG.md
|
- name: Update CHANGELOG.md
|
||||||
if: ${{ !!github.event.client_payload.from_version }}
|
if: ${{ !!github.event.client_payload.from_version }}
|
||||||
uses: garronej/github_actions_toolkit@v1.9
|
uses: garronej/github_actions_toolkit@v1.11
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.PAT }}
|
GITHUB_TOKEN: ${{ secrets.PAT }}
|
||||||
with:
|
with:
|
||||||
@ -51,8 +51,18 @@ jobs:
|
|||||||
git branch latest
|
git branch latest
|
||||||
git checkout latest
|
git checkout latest
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
- run: npm ci
|
- run: |
|
||||||
- run: npm run enable_short_import_path
|
if [ -f "./yarn.lock" ]; then
|
||||||
|
yarn install --frozen-lockfile
|
||||||
|
else
|
||||||
|
npm ci
|
||||||
|
fi
|
||||||
|
- run: |
|
||||||
|
PACKAGE_MANAGER=npm
|
||||||
|
if [ -f "./yarn.lock" ]; then
|
||||||
|
PACKAGE_MANAGER=yarn
|
||||||
|
fi
|
||||||
|
$PACKAGE_MANAGER run enable_short_import_path
|
||||||
env:
|
env:
|
||||||
DRY_RUN: "0"
|
DRY_RUN: "0"
|
||||||
- name: (DEBUG) Show how the files have been moved to enable short import
|
- name: (DEBUG) Show how the files have been moved to enable short import
|
||||||
@ -103,4 +113,4 @@ jobs:
|
|||||||
branch: latest
|
branch: latest
|
||||||
draft: false
|
draft: false
|
||||||
prerelease: false
|
prerelease: false
|
||||||
body: ${{ steps.id_rb.outputs.body }}
|
body: ${{ steps.id_rb.outputs.body }}
|
@ -42,12 +42,10 @@ Typically you will get:
|
|||||||
`package.json`:
|
`package.json`:
|
||||||
```json
|
```json
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"keycloak-react-theming": "^0.0.10",
|
"keycloak-react-theming": "^0.0.10"
|
||||||
[...]
|
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "react-scripts build && build-keycloak-theme",
|
"build": "react-scripts build && build-keycloak-theme"
|
||||||
[...]
|
|
||||||
},
|
},
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -27,7 +27,8 @@
|
|||||||
"!src/test/",
|
"!src/test/",
|
||||||
"dist/",
|
"dist/",
|
||||||
"!dist/test/",
|
"!dist/test/",
|
||||||
"!dist/tsconfig.tsbuildinfo"
|
"!dist/tsconfig.tsbuildinfo",
|
||||||
|
"res/"
|
||||||
],
|
],
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"keycloak",
|
"keycloak",
|
||||||
@ -38,7 +39,7 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^10.0.0",
|
"@types/node": "^10.0.0",
|
||||||
"copyfiles": "^2.4.1",
|
"copyfiles": "^2.4.1",
|
||||||
"denoify": "^0.6.4",
|
"denoify": "^0.6.5",
|
||||||
"scripting-tools": "^0.19.13",
|
"scripting-tools": "^0.19.13",
|
||||||
"typescript": "^4.1.5"
|
"typescript": "^4.1.5"
|
||||||
},
|
},
|
||||||
|
0
res/test.txt
Normal file
0
res/test.txt
Normal file
Reference in New Issue
Block a user