fix(emit): surface diagnostic for invalid left hand side assignment (… #848
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: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
tags: | |
- '*' | |
workflow_dispatch: | |
jobs: | |
rust: | |
name: deno_ast-ubuntu-latest-release | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
env: | |
CARGO_INCREMENTAL: 0 | |
GH_ACTIONS: 1 | |
RUST_BACKTRACE: full | |
RUSTFLAGS: -D warnings | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- uses: denoland/setup-deno@v1 | |
- uses: dsherret/rust-toolchain-file@v1 | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
save-if: ${{ github.ref == 'refs/heads/main' }} | |
- name: Format | |
run: | | |
cargo fmt --all -- --check | |
deno fmt --check | |
- name: Lint | |
run: | | |
cargo clippy --all-targets --all-features --release | |
deno lint | |
- name: Build | |
run: cargo build --all-targets --all-features --release | |
- name: Test | |
run: cargo test --all-targets --all-features --release | |
- name: Publish | |
if: | | |
github.repository == 'denoland/deno_ast' && | |
startsWith(github.ref, 'refs/tags/') | |
env: | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
run: | | |
cargo publish |