feat(slices): repurpose unused ImageCards slice for partner logos #68
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
on: | |
push: | |
branches: | |
- main | |
- develop | |
- release/* | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
lint: | |
name: Lint Code | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Setup Node.js v22.10.0 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '22.10.0' | |
registry-url: https://npm.fontawesome.com/ | |
scope: '@fortawesome' | |
cache: 'npm' | |
- name: Install Node Dependencies | |
run: npm ci --legacy-peer-deps | |
env: | |
FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.NPM_CONFIG_FONT_AWESOME_TOKEN }} | |
- name: Check Code Formatting with Prettier | |
run: npm run format:check | |
- name: Lint Code with ESLint | |
run: npm run lint | |
- name: Validate TypeScript | |
run: npm run validate |