Skip to content

Bump prettier from 2.8.8 to 3.2.4 #1035

Bump prettier from 2.8.8 to 3.2.4

Bump prettier from 2.8.8 to 3.2.4 #1035

Workflow file for this run

name: build-pr
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.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 and build
run: |
yarn install --frozen-lockfile
yarn run coverage
yarn run build
env:
CI: true
- run: ./node_modules/.bin/codecov -f coverage/*.json
save-pr:
runs-on: ubuntu-latest
steps:
- name: Save PR number
run: |
mkdir -p ./pr
echo ${{ github.event.number }} > ./pr/number
- uses: actions/upload-artifact@v2
with:
name: pr
path: pr/