refactor: update for deno_graph handling redirects (#548) #1991
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_doc-${{ matrix.os }} | |
if: | | |
github.event_name == 'push' || | |
!startsWith(github.event.pull_request.head.label, 'denoland:') | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
os: [macOS-latest, ubuntu-latest, windows-2019] | |
defaults: | |
run: | |
shell: bash | |
env: | |
CARGO_INCREMENTAL: 0 | |
GH_ACTIONS: 1 | |
RUST_BACKTRACE: full | |
RUSTFLAGS: -D warnings | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- uses: dsherret/rust-toolchain-file@v1 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
save-if: ${{ github.ref == 'refs/heads/main' }} | |
- name: Install Deno | |
uses: denoland/setup-deno@v1 | |
with: | |
deno-version: 1.x | |
- name: Format | |
if: contains(matrix.os, 'ubuntu') | |
run: | | |
cargo fmt -- --check | |
deno fmt --check | |
- name: Lint | |
run: | | |
cargo clippy --all-targets --locked -- -D clippy::all | |
deno lint --ignore=src/html,benches/fixtures,target/ | |
# - name: Tailwind Check | |
# run: | | |
# deno task tailwind | |
# git diff --exit-code | |
- name: Build | |
run: deno task build && cargo build --locked --all-targets | |
- name: Test (no highlighter) | |
run: | | |
cargo test --locked --all-targets | |
deno test --allow-read --allow-net --allow-env --allow-write | |
- name: Test (syntect) | |
run: | | |
cargo test --locked --all-targets --features=syntect | |
deno test --allow-read --allow-net --allow-env --allow-write | |
- name: Test (tree-sitter) | |
run: | | |
cargo test --locked --all-targets --features=tree-sitter | |
deno test --allow-read --allow-net --allow-env --allow-write | |
- name: Publish | |
if: | | |
contains(matrix.os, 'ubuntu') && | |
github.repository == 'denoland/deno_doc' && | |
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" | |
- name: Publish deno.land/x | |
uses: denoland/publish-folder@82ce065074e7174baf444332c4b7c40869a4909a | |
if: contains(matrix.os, 'ubuntu') && startsWith(github.ref, 'refs/tags/') | |
with: | |
folder: js | |
branch: deno_registry | |
tag: deno/${{ steps.get_tag_version.outputs.TAG_VERSION }} | |
token: ${{ secrets.DENOBOT_PAT }} | |
git-user-name: denobot | |
git-user-email: denobot@users.noreply.github.com |