Skip to content

Feat: Use uncrypto

Feat: Use uncrypto #14

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Deps
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test:ci