forked from actions/runner-container-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to npm workspaces and cleaned up typescript errors (actions#146)
- Loading branch information
1 parent
7223e1d
commit c77d5bc
Showing
39 changed files
with
11,766 additions
and
25,052 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 |
---|---|---|
|
@@ -11,21 +11,20 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: sed -i "s|{{PATHTOREPO}}|$(pwd)|" packages/k8s/tests/test-kind.yaml | ||
name: Setup kind cluster yaml config | ||
- name: Setup kind cluster yaml config | ||
run: sed -i "s|{{PATHTOREPO}}|$(pwd)|" packages/k8s/tests/test-kind.yaml | ||
- uses: helm/[email protected] | ||
with: | ||
config: packages/k8s/tests/test-kind.yaml | ||
- run: npm install | ||
name: Install dependencies | ||
- run: npm run bootstrap | ||
name: Bootstrap the packages | ||
- run: npm run build-all | ||
name: Build packages | ||
- run: npm run format-check | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Build packages | ||
run: npm run build | ||
- name: Check formatting | ||
run: npm run format-check | ||
- name: Check linter | ||
run: | | ||
npm run lint | ||
git diff --exit-code -- ':!packages/k8s/tests/test-kind.yaml' | ||
- name: Run tests | ||
run: npm run test | ||
run: npm run test |
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
.idea/ | ||
node_modules/ | ||
lib/ | ||
dist/ | ||
**/tests/_temp/** | ||
packages/k8s/tests/test-kind.yaml | ||
packages/k8s/tests/test-kind.yaml |
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 @@ | ||
18 |
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
Oops, something went wrong.