feat: load JSR URLs using checksum found in package's manifest #1322
Workflow file for this run
This file contains 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_graph-${{ matrix.os }} | |
if: | | |
(github.event_name == 'push' || !startsWith(github.event.pull_request.head.label, 'denoland:')) | |
&& github.ref_name != 'deno_registry' | |
&& !startsWith(github.ref, 'refs/tags/deno/') | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
os: [macOS-latest, ubuntu-latest, windows-2019] | |
env: | |
CARGO_INCREMENTAL: 0 | |
GH_ACTIONS: 1 | |
RUST_BACKTRACE: full | |
RUSTFLAGS: -D warnings | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
- name: Install rust | |
uses: dsherret/rust-toolchain-file@v1 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
save-if: ${{ github.ref == 'refs/heads/main' }} | |
- name: Install up Deno | |
uses: denoland/setup-deno@v1 | |
- name: Format | |
if: contains(matrix.os, 'ubuntu') | |
run: | | |
cargo fmt -- --check | |
deno fmt --check | |
- name: Lint | |
if: contains(matrix.os, 'ubuntu') | |
run: | | |
cargo clippy --locked --all-features --all-targets -- -D clippy::all | |
deno lint | |
- name: Cargo Build | |
run: cargo build --locked --all-features --all-targets | |
- name: Cargo Test | |
run: cargo test --locked --all-features --all-targets | |
# ensure we build with no default features, but only bother testing on linux | |
- name: Cargo Build (no-default-features) | |
if: contains(matrix.os, 'ubuntu') | |
run: cargo build --locked --no-default-features | |
- name: Build Wasm | |
run: deno task build | |
- name: Test JavaScript | |
run: deno task test | |
- name: Cargo publish | |
if: | | |
contains(matrix.os, 'ubuntu') && | |
github.repository == 'denoland/deno_graph' && | |
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 | |
# NPM Distribution | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
if: contains(matrix.os, 'ubuntu') | |
with: | |
node-version: '18.x' | |
registry-url: 'https://registry.npmjs.org' | |
- name: Build npm | |
if: contains(matrix.os, 'ubuntu') | |
run: deno task build:npm ${{steps.get_tag_version.outputs.TAG_VERSION}} | |
- name: npm publish | |
if: contains(matrix.os, 'ubuntu') && startsWith(github.ref, 'refs/tags/') | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: cd npm && npm publish |