Skip to content

chore: add release script #3095

chore: add release script

chore: add release script #3095

Workflow file for this run

name: CI
env:
NODE_OPTIONS: --max-old-space-size=6144
on:
push:
branches:
- master
paths-ignore:
- 'examples/**'
pull_request:
types:
- 'opened'
- 'synchronize'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: [14.x, 16.x, 18.x]
os: [ubuntu-latest, windows-latest]
fail-fast: false
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org/'
- name: Install rust toolchain
uses: actions-rs/toolchain@v1
with:
target: wasm32-wasi
- name: Install pnpm
uses: pnpm/action-setup@v2.2.2
with:
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-pnpm-store-node${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-node${{ matrix.node-version }}-
- name: Setup cargo cache
uses: actions/cache@v3
with:
# ref: https://doc.rust-lang.org/cargo/guide/cargo-home.html#caching-the-cargo-home-in-ci
path: |
~/.cargo/.crates.toml
~/.cargo/.crates2.json
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-store-node${{ matrix.node-version }}-${{ hashFiles('**/Cargo.lock') }}
- name: Install dependencies
run: pnpm i
- name: Lint code
run: pnpm lint:es
- name: Run tests
run: pnpm test
env:
CI: true
NODE_ENV: test