lockup-spacing: adjust the spacing for the logo and lines for both de… #9
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 & Lint | |
on: [push] | |
jobs: | |
lint: | |
name: Lint & TS Check | |
runs-on: ubuntu-latest | |
container: | |
image: node:20 | |
env: | |
NEXT_PUBLIC_DRUPAL_BASE_URL: ${{ secrets.NEXT_PUBLIC_DRUPAL_BASE_URL }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Restore Cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
node_modules | |
key: 1.x-${{ hashFiles('package.json') }}-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
1.x-${{ hashFiles('package.json') }}-${{ hashFiles('yarn.lock') }} | |
1.x-${{ hashFiles('package.json') }}- | |
1.x- | |
- name: Lint | |
run: | | |
yarn | |
yarn lint | |
- name: Build | |
run: | | |
yarn build |