Skip to content

Add method for writing/reading Deck to/from string #26

Add method for writing/reading Deck to/from string

Add method for writing/reading Deck to/from string #26

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Lint, test, and build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install dependencies
run: npm ci
- name: Lint, test, and build
run: |
npm run lint
npm test -- --coverage --verbose
npm run build