-
Notifications
You must be signed in to change notification settings - Fork 788
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(compiler): allow ignore pattern for copy task (#5899)
* feat: allow ignore pattern for copy task * add tests to pipeline * fix code docs * remove unnecessary files * add workflow to pipeline * add missing script * fix end-to-end tests * prettier * revert some changes * set absolute flag * use rimraf for support in Windows * chore(deps): install Jest dependencies via TypeScript and Node * fix task for windows * make it relative to source path * tweak
- Loading branch information
1 parent
70c4e8a
commit f89c6a3
Showing
21 changed files
with
973 additions
and
58 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
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,31 @@ | ||
name: Copy Task Tests | ||
|
||
on: | ||
workflow_call: | ||
# Make this a reusable workflow, no value needed | ||
# https://docs.github.com/en/actions/using-workflows/reusing-workflows | ||
|
||
jobs: | ||
bundler_tests: | ||
name: Verify Copy Task | ||
runs-on: 'ubuntu-22.04' | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | ||
|
||
- name: Get Core Dependencies | ||
uses: ./.github/workflows/actions/get-core-dependencies | ||
|
||
- name: Download Build Archive | ||
uses: ./.github/workflows/actions/download-archive | ||
with: | ||
name: stencil-core | ||
path: . | ||
filename: stencil-core-build.zip | ||
|
||
- name: Bundler Tests | ||
run: npm run test.copytask | ||
shell: bash | ||
|
||
- name: Check Git Context | ||
uses: ./.github/workflows/actions/check-git-context |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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.