Skip to content

feat: js-md5 migrated to native solution #8

feat: js-md5 migrated to native solution

feat: js-md5 migrated to native solution #8

Workflow file for this run

name: Test and Build
on:
push:
branches:
- main
paths:
- src/**
- tests/**
- .github/workflows/**.yaml
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 8
run_install: false
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
cache: 'pnpm'
- run: pnpm install
- run: pnpm run build
- run: pnpm test