chore(deps-dev): bump eslint-config-prettier from 9.0.0 to 9.1.0 #662
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: Build | |
on: | |
push: | |
branches: | |
- main | |
- development | |
pull_request: | |
branches: | |
- main | |
- development | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- uses: ./.github/prepare-action | |
with: | |
openai-api-key: ${{ secrets.OPENAI_API_KEY }} | |
app-debug: false | |
wp-username: ${{ secrets.WP_USERNAME }} | |
wp-password: ${{ secrets.WP_PASSWORD }} | |
node-version: 16.x | |
- name: Install NPM dependencies | |
run: npm ci | |
- name: Run ESLint | |
run: npm run test:eslint | |
- name: Run Prettier | |
run: npm run test:prettier | |
- name: Run TypeScript check | |
run: npm run test:tsc | |
- name: Run Unit & Component tests | |
run: npm run test:jest-less-strict | |
- uses: ./.github/cleanup-action | |
if: always() |