Skip to content
Merged
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 Oct 3, 2025
55d0cf0
Potential fix for code scanning alert no. 17: Cache Poisoning via exe…
ernest-nowacki Oct 3, 2025
b6801a6
Update workflow to fix downloading cre cli
ernest-nowacki Oct 3, 2025
791b874
Add better triggering
ernest-nowacki Oct 3, 2025
0e1d8a9
fix on comment issue
ernest-nowacki Oct 3, 2025
b086e1d
Smoke test again
ernest-nowacki Oct 3, 2025
ae20ed9
Use proper binary name structure
ernest-nowacki Oct 3, 2025
1c726e9
Merge branch 'main' of github.com:smartcontractkit/cre-sdk-typescript…
ernest-nowacki Oct 8, 2025
3d38a41
Rework smoke test action to start small
ernest-nowacki Oct 8, 2025
79ab9d2
Install zsh
ernest-nowacki Oct 8, 2025
a6b4586
Specifically state permissions and pin bun install action to commit
ernest-nowacki Oct 8, 2025
a12083f
Add full checks now instead of just lint
ernest-nowacki Oct 8, 2025
4d646ba
Add rust toolchain installation
ernest-nowacki Oct 8, 2025
206f42e
Make sure we do check out the submodules too
ernest-nowacki Oct 8, 2025
e1a2f09
Try installing CRE CLI and see if it would work on the CI
ernest-nowacki Oct 8, 2025
38b0bba
Change the version we use for ubuntu-latest
ernest-nowacki Oct 8, 2025
7ace272
Simulate the hello world workflow
ernest-nowacki Oct 8, 2025
0d2bce9
Add a step to setup env variables
ernest-nowacki Oct 8, 2025
d8cfedd
Add proper key to simulate workflow using headless
ernest-nowacki Oct 8, 2025
6d0e658
Add actual expectations
ernest-nowacki Oct 8, 2025
c2dd4fe
Try improving validation step to properly match expected outcome
ernest-nowacki Oct 8, 2025
dc04971
Make CRE CLI simulation part of CI checks
ernest-nowacki Oct 8, 2025
d84f7f1
Restore full-checks as a name to pass the required checks
ernest-nowacki Oct 8, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/smoke-test.yml
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

Check failure on line 19 in .github/workflows/smoke-test.yml

View workflow job for this annotation

GitHub Actions / Validate Workflow Changes

1. v2 is not a valid SHA reference (sha-ref / error) 2. No version comment found (version-comment / warning)
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
Loading