-
Notifications
You must be signed in to change notification settings - Fork 195
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
1 parent
5223088
commit ed99eed
Showing
4 changed files
with
62 additions
and
3 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 |
---|---|---|
|
@@ -18,10 +18,10 @@ jobs: | |
with: | ||
fetch-depth: 0 # Checkout all branches and tags | ||
|
||
- name: 'Use NodeJS 16' # Setup node using version 14 | ||
- name: 'Use NodeJS 18' # Setup node using version 14 | ||
uses: actions/setup-node@v2 # Public action | ||
with: | ||
node-version: '16.18.1' | ||
node-version: '18.17.0' | ||
|
||
- name: Setup [email protected] | ||
run: yarn global add [email protected] --ignore-engines | ||
|
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,39 @@ | ||
name: Test gh actions | ||
|
||
on: | ||
push: | ||
branches: | ||
- feat/test-gh-actions | ||
|
||
jobs: | ||
publish: | ||
if: true | ||
runs-on: ubuntu-latest | ||
|
||
permissions: write-all | ||
|
||
steps: | ||
- name: Checkout # Download code from the repository | ||
uses: actions/checkout@v2 # Public action | ||
with: | ||
fetch-depth: 0 # Checkout all branches and tags | ||
|
||
- name: 'Use NodeJS 18' # Setup node using version 14 | ||
uses: actions/setup-node@v2 # Public action | ||
with: | ||
node-version: '18.17.0' | ||
|
||
- name: Setup [email protected] | ||
run: yarn global add [email protected] --ignore-engines | ||
|
||
- name: Set up Git user | ||
run: | | ||
git config user.name "${{ github.actor }}" | ||
git config user.email "${{ github.actor }}@users.noreply.github.com" | ||
- name: Build dependencies | ||
run: | | ||
lerna clean --yes | ||
node etc/bootstrapEnv | ||
yarn install --ignore-engines | ||
yarn build |
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