This repository has been archived by the owner on Jan 24, 2024. It is now read-only.
chore(deps): update dependency prettier to v3.2.4 #2431
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: Main | |
on: [push] | |
jobs: | |
build: | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 | |
- name: Setting up Node.js | |
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3 | |
with: | |
node-version-file: .node-version | |
cache: npm | |
- name: npm install | |
run: npm ci | |
- name: validate renovate config | |
run: npx --package renovate -c 'renovate-config-validator' | |
- name: lint | |
run: | | |
npm run lint | |
npm run doc:lint | |
- name: test | |
run: | | |
npm run test:ci | |
npx [email protected] | |
- name: build | |
run: npm run build |