Skip to content

Sign functionality

Sign functionality #6

Workflow file for this run

name: build-test
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize]
jobs:
build-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "16.x"
- run: npm install
- run: npm run build
- run: npm run ci