Skip to content

Created FUNDING.md 💰 #26

Created FUNDING.md 💰

Created FUNDING.md 💰 #26

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
types: ['opened', 'reopened', 'synchronize']
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['16', '18']
name: Node ${{ matrix.node }} build
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
- name: install
run: |
npm install -g npm@latest
npm ci
- name: lint
run: npm run lint
- name: format
run: npm run format
- name: build
run: npm run build
- name: test
run: npm run test
- name: docs
run: npm run docs
- name: Coveralls
uses: coverallsapp/github-action@v2