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

Turn off canary builds, turn on stable builds. #1003

Merged
merged 3 commits into from
Jul 5, 2021
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
16 changes: 6 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ jobs:
strategy:
fail-fast: false
matrix:
# TODO(lucacasonato): reenable stable after 1.10 release
deno: [canary] # [stable, canary]
# TODO(ry): reenable canary when on-going builds in deno repo do not
# result in red builds in std.
deno: [1.x] # [1.x, canary]
os: [macOS-latest, ubuntu-latest, windows-2019]

steps:
Expand Down Expand Up @@ -50,16 +51,11 @@ jobs:
submodules: false
persist-credentials: false

- name: Install Deno
run: |-
curl -fsSL https://deno.land/x/install/install.sh | sh
echo "$HOME/.deno/bin" >> $GITHUB_PATH

- name: Upgrade to Deno canary
run: deno upgrade --canary
- name: Set up Deno
uses: denoland/setup-deno@v1.0.0

- name: Format
run: deno fmt --check

- name: Lint
run: deno lint --unstable
run: deno lint