Skip to content

Format files with Prettier #246

Format files with Prettier

Format files with Prettier #246

Workflow file for this run

name: Build on PR
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 13.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: install node packages via lock
run: npm ci
- name: build
run: npm run build