This repository was archived by the owner on Jun 13, 2025. It is now read-only.
fix: discover tsconfig.json if there's a deno.json too, only discover… #900
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
name: ci | |
on: [push, pull_request] | |
jobs: | |
rust: | |
name: deno_config-${{ matrix.os }} | |
if: | | |
(github.event_name == 'push' || !startsWith(github.event.pull_request.head.label, 'denoland:')) | |
&& github.ref_name != 'deno_config' | |
&& !startsWith(github.ref, 'refs/tags/deno/') | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
os: [macOS-latest, ubuntu-latest, windows-2019] | |
env: | |
CARGO_INCREMENTAL: 0 | |
GH_ACTIONS: 1 | |
RUSTFLAGS: -D warnings | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: dsherret/rust-toolchain-file@v1 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
save-if: ${{ github.ref == 'refs/heads/main' }} | |
- name: Format | |
if: contains(matrix.os, 'ubuntu') | |
run: | | |
cargo fmt -- --check | |
- name: Check build features | |
if: contains(matrix.os, 'ubuntu') | |
run: | | |
cargo check --no-default-features | |
cargo check --no-default-features --features workspace | |
cargo check --no-default-features --features package_json | |
cargo check --no-default-features --features workspace --features sync | |
- name: Check builds Wasm | |
if: contains(matrix.os, 'ubuntu') | |
run: | | |
rustup target add wasm32-unknown-unknown | |
cargo check --all-features --target wasm32-unknown-unknown | |
- name: Cargo test | |
run: cargo test --locked --release --all-features --bins --tests --examples | |
- name: Lint | |
if: contains(matrix.os, 'ubuntu') | |
run: | | |
cargo clippy --locked --all-features --all-targets -- -D clippy::all | |
- name: Cargo publish | |
if: | | |
contains(matrix.os, 'ubuntu') && | |
github.repository == 'denoland/deno_config' && | |
startsWith(github.ref, 'refs/tags/') | |
env: | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
run: cargo publish | |
- name: Get tag version | |
if: contains(matrix.os, 'ubuntu') && startsWith(github.ref, 'refs/tags/') | |
id: get_tag_version | |
run: echo TAG_VERSION=${GITHUB_REF/refs\/tags\//} >> "$GITHUB_OUTPUT" | |