Skip to content
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

ci: bumping actions and runtimes. #942

Merged
merged 3 commits into from
Apr 6, 2024
Merged
Changes from all commits
Commits
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
23 changes: 12 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,27 @@ jobs:
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
bun-version: [1.x]
deno-version: [1.34.x]
bun-version: [1.0.23]
deno-version: [1.42.x]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'

- name: Use Deno ${{ matrix.deno-version }}
uses: denolib/setup-deno@v2
uses: denoland/setup-deno@v1
with:
deno-version: ${{ matrix.deno-version }}

# - name: Use Bun ${{ matrix.bun-version }}
# uses: oven-sh/setup-bun@v1
# with:
# bun-version: ${{ matrix.bun-version }}
- name: Use Bun ${{ matrix.bun-version }}
uses: oven-sh/setup-bun@v1
with:
bun-version: ${{ matrix.bun-version }}

- name: Install dependencies
run: npm ci
Expand All @@ -55,8 +56,8 @@ jobs:
- name: Run deno tests
run: npm run test:deno

# - name: Run bun tests
# run: npm run test:bun
- name: Run bun tests
run: npm run test:bun

- name: Run esbuild test
run: npm run test:esbuild
Expand Down