Skip to content

Bump prettier from 2.8.1 to 2.8.8 #222

Bump prettier from 2.8.1 to 2.8.8

Bump prettier from 2.8.1 to 2.8.8 #222

Workflow file for this run

name: Continuous integration
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version-file: package.json
cache: yarn
- name: Install
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Format
run: yarn checkformatting
- name: Lint
run: yarn lint
- name: Test (ESM)
run: yarn test
- name: Test (CommonJS)
run: yarn test-cjs
- name: Build and run examples
run: node examples/run-all.js