Skip to content

Improve release section in README #62

Improve release section in README

Improve release section in README #62

Workflow file for this run

name: Tests
on: [push]
jobs:
unit:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
container:
image: node:${{ matrix.node }}-alpine
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
echo "::group::Install project dependencies"
yarn install --frozen-lockfile
echo "::endgroup::"
- run: yarn lint
- run: yarn test