Skip to content

Commit

Permalink
ci: use deno rc for now
Browse files Browse the repository at this point in the history
  • Loading branch information
lowlighter committed Sep 28, 2024
1 parent c803a96 commit 4bd236f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: rc
- name: List packages
id: packages
run: |
Expand Down Expand Up @@ -69,7 +71,7 @@ jobs:
- uses: actions/configure-pages@v5
- uses: denoland/setup-deno@v1
with:
deno-version: 1.x
deno-version: rc
- uses: actions/setup-node@v4
with:
node-version: 22.x
Expand Down Expand Up @@ -99,6 +101,8 @@ jobs:
with:
ref: main
- uses: denoland/setup-deno@v1
with:
deno-version: rc
- name: Configure git
run: |
git config user.name 'github-actions[bot]'
Expand Down Expand Up @@ -154,6 +158,8 @@ jobs:
with:
fetch-depth: 0
- uses: denoland/setup-deno@v1
with:
deno-version: rc
- name: Configure git
run: |
git config user.name 'github-actions[bot]'
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/ci_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: denoland/setup-deno@v1
with:
deno-version: rc
- run: deno lint
- run: deno fmt --check
- run: |
Expand Down Expand Up @@ -132,7 +134,7 @@ jobs:
fetch-depth: 0
- uses: denoland/setup-deno@v1
with:
deno-version: 1.x
deno-version: rc
- uses: actions/setup-node@v4
with:
node-version: 22.x
Expand All @@ -153,7 +155,6 @@ jobs:
if: ${{ steps.package.outputs.has_build }}
# Tests
- run: deno task test:deno
- run: deno task test:deno-future
- run: deno task test:others
# Bench
- run: deno task bench
Expand Down Expand Up @@ -218,6 +219,8 @@ jobs:
with:
fetch-depth: 0
- uses: denoland/setup-deno@v1
with:
deno-version: rc
- name: Configure git
run: |
git config user.name 'github-actions[bot]'
Expand Down

0 comments on commit 4bd236f

Please sign in to comment.