-
Notifications
You must be signed in to change notification settings - Fork 264
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 #11056 from rancher/richard-cox-2.7.patch1-drone
[2.7.patch1] Port drone build tasks to gh workflows + actions
- Loading branch information
Showing
24 changed files
with
347 additions
and
458 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Run i18n Lint | ||
description: Run i18n Lint | ||
|
||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: Setup env | ||
uses: ./.github/actions/setup | ||
|
||
- name: Run i18n linters | ||
shell: bash | ||
run: yarn lint-l10n |
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,12 @@ | ||
name: Run Lint | ||
description: Run Lint | ||
|
||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: Setup env | ||
uses: ./.github/actions/setup | ||
|
||
- name: Run linters | ||
shell: bash | ||
run: yarn lint |
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,14 @@ | ||
name: Setup UI Env | ||
description: Setup node, python and call bootstrap script | ||
|
||
runs: | ||
using: 'composite' | ||
steps: | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '14.x' | ||
cache: 'yarn' | ||
|
||
- name: Install packages | ||
shell: bash | ||
run: yarn install:ci |
Oops, something went wrong.