Bump js-slang from 0.5.32 to 1.0.53 in /sourceror-driver #597
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
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
name: CI | |
jobs: | |
build_and_test: | |
name: Rust project | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 16 | |
cache: yarn | |
cache-dependency-path: sourceror-driver/yarn.lock | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --release --all-features | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --release --all-features | |
- name: Yarn install and build | |
run: cargo install wasm-pack && cd sourceror-driver && yarn install && yarn run build |