build(deps-dev): bump prettier from 3.2.4 to 3.2.5 #443
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pull request ci | |
on: | |
pull_request: | |
branches: ['master'] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
merge: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Prepare actions | |
uses: actions/checkout@v3 | |
- name: Setup node env | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm install | |
- name: Lint check | |
run: npm run lint:check | |
- name: Types check | |
run: npm run types | |
- name: Format check | |
run: npm run format:check | |
- name: Spell check | |
run: npm run spell | |
- name: Semantic version check | |
if: github.event.pull_request.user.login != 'dependabot[bot]' | |
run: npm run svc | |
- name: Build check | |
run: npm run build | |
- name: Test | |
run: npm run test | |
timeout-minutes: 5 |