Skip to content

Bump @types/node from 20.11.30 to 20.12.3 in /sourceror-driver #601

Bump @types/node from 20.11.30 to 20.12.3 in /sourceror-driver

Bump @types/node from 20.11.30 to 20.12.3 in /sourceror-driver #601

Workflow file for this run

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