fake-log/.github/workflows/prettier.yml

18 lines
289 B
YAML
Raw Permalink Normal View History

2024-03-28 10:47:46 +01:00
name: Prettier
2024-03-27 22:31:41 +01:00
on:
pull_request:
2024-03-28 10:47:46 +01:00
branches: [master]
2024-03-27 22:31:41 +01:00
jobs:
prettier:
runs-on: ubuntu-latest
steps:
2024-03-28 10:47:46 +01:00
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
2024-03-27 22:31:41 +01:00
with:
2024-03-28 10:47:46 +01:00
node-version: 17
- run: npm install
- run: npm run prettier:check