Skip to content

chore(deps): update swc_core requirement from 0.95.2 to 0.96.2 #52

chore(deps): update swc_core requirement from 0.95.2 to 0.96.2

chore(deps): update swc_core requirement from 0.95.2 to 0.96.2 #52

Workflow file for this run

name: pull_request
on:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
- name: Cache
uses: actions/cache@v2
with:
path: |
~/.cargo/
target
Cargo.lock
key: cargo-dev--ubuntu-latest-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
cargo-dev--ubuntu-latest
# Ensure that all components are compilable.
- run: cargo test --color always --all