Skip to content

Add screenshots

Add screenshots #14

Workflow file for this run

name: pnpm
on:
push:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Build
run: |
sudo apt update && sudo apt install npm
npm install -g pnpm
pnpm install
pnpm build
- name: Test
run: pnpm test