Skip to content

Update dependency prettier to ^2.8.7 #1172

Update dependency prettier to ^2.8.7

Update dependency prettier to ^2.8.7 #1172

Workflow file for this run

name: build
on:
push:
branches:
- master
# Run tests for any PRs.
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 14
- 16
- 18
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3.6.0
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install
- name: npm run lint
run: npm run lint
- name: npm run build
run: npm run build
- name: npm run test
run: npm run test
env:
CI: true