-
Notifications
You must be signed in to change notification settings - Fork 2
Smoke test #115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Smoke test #115
Changes from 9 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
0b3759f
Try smoke test
ernest-nowacki 55d0cf0
Potential fix for code scanning alert no. 17: Cache Poisoning via exe…
ernest-nowacki b6801a6
Update workflow to fix downloading cre cli
ernest-nowacki 791b874
Add better triggering
ernest-nowacki 0e1d8a9
fix on comment issue
ernest-nowacki b086e1d
Smoke test again
ernest-nowacki ae20ed9
Use proper binary name structure
ernest-nowacki 1c726e9
Merge branch 'main' of github.com:smartcontractkit/cre-sdk-typescript…
ernest-nowacki 3d38a41
Rework smoke test action to start small
ernest-nowacki 79ab9d2
Install zsh
ernest-nowacki a6b4586
Specifically state permissions and pin bun install action to commit
ernest-nowacki a12083f
Add full checks now instead of just lint
ernest-nowacki 4d646ba
Add rust toolchain installation
ernest-nowacki 206f42e
Make sure we do check out the submodules too
ernest-nowacki e1a2f09
Try installing CRE CLI and see if it would work on the CI
ernest-nowacki 38b0bba
Change the version we use for ubuntu-latest
ernest-nowacki 7ace272
Simulate the hello world workflow
ernest-nowacki 0d2bce9
Add a step to setup env variables
ernest-nowacki d8cfedd
Add proper key to simulate workflow using headless
ernest-nowacki 6d0e658
Add actual expectations
ernest-nowacki c2dd4fe
Try improving validation step to properly match expected outcome
ernest-nowacki dc04971
Make CRE CLI simulation part of CI checks
ernest-nowacki d84f7f1
Restore full-checks as a name to pass the required checks
ernest-nowacki File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,33 @@ | ||
| name: smoke-test | ||
|
|
||
| on: | ||
| pull_request: | ||
| branches: [main] | ||
|
|
||
| jobs: | ||
| test: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| defaults: | ||
| run: | ||
| shell: zsh {0} | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - name: Setup Bun | ||
| uses: oven-sh/setup-bun@v2 | ||
| with: | ||
| bun-version: latest | ||
|
|
||
| - name: Cache Bun dependencies | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: ~/.bun/install/cache | ||
| key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }} | ||
|
|
||
| - name: Install dependencies | ||
| run: bun install --frozen-lockfile | ||
|
|
||
| - name: Lint | ||
| run: bun run lint | ||
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.