build(deps): Bump @adobe/css-tools from 4.3.1 to 4.3.2 #274
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: Certify Build | |
on: | |
pull_request: | |
branches: "*" | |
paths: | |
- "src/**" | |
- "public/**" | |
- "*.json" | |
- "*.js" | |
- "*.ts" | |
- "*.tsx" | |
permissions: | |
contents: read | |
jobs: | |
certify: | |
name: Certify Build Changes | |
if: ${{ github.repository_owner == 'amattu2' }} | |
runs-on: ubuntu-latest | |
steps: | |
# Clone repository | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
# Install dependencies | |
- name: Install Dependencies | |
run: npm ci | |
# Run Jest tests | |
- name: Run Jest | |
run: npm run test:ci | |
# Run ESLint | |
- name: Run ESLint | |
run: npm run lint:ci |