feat: some small changes #151
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: CI | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
linting: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- uses: bahmutov/npm-install@v1 | |
with: | |
useRollingCache: true | |
- name: format | |
run: npm run format:check | |
- name: lint | |
run: npm run lint | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Setup env | |
run: | | |
touch .env | |
echo DIRECTUS_URL="https://directus.universe.nexus" > .env | |
- name: Install dependencies | |
uses: bahmutov/npm-install@v1 | |
with: | |
useRollingCache: true | |
- name: Cache build | |
uses: actions/cache@v3 | |
with: | |
path: ${{ github.workspace }}/frontend/.next/cache | |
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }} | |
restore-keys: | | |
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json') }}- | |
- name: Build | |
run: npm run build |