Skip to content

docs(publish): fix typo in README (#57) #1

docs(publish): fix typo in README (#57)

docs(publish): fix typo in README (#57) #1

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
cache: 'npm'
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Prettier Check
run: npm run prettier:check
- name: Lint
run: npm run lint
- name: Test
run: npm test