Skip to content

Bump prettier from 3.0.0 to 3.0.1 #22

Bump prettier from 3.0.0 to 3.0.1

Bump prettier from 3.0.0 to 3.0.1 #22

Workflow file for this run

name: github-action
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install
run: npm install
- name: All
run: npm run all
# Check whether the dist/index.js was generated correctly
dist:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set Node.js 16.x
uses: actions/[email protected]
with:
node-version: 16.x
- name: Dependencies
run: npm ci
- name: Build
run: npm run build
- name: Package
run: npm run package
- name: Compare the expected and actual dist/ directories
run: |
if [ "$(git diff --ignore-space-at-eol dist/ | wc -l)" -gt "0" ]; then
echo "Detected uncommitted changes after build. See status below:"
git diff
exit 1
fi