Skip to content

chore: update Tailwind CSS configuration and refactor styles across c… #230

chore: update Tailwind CSS configuration and refactor styles across c…

chore: update Tailwind CSS configuration and refactor styles across c… #230

Workflow file for this run

name: Test
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- run: yarn install
- name: eslint
run: yarn lint
build-test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Cache node_modules, .next/cache, .npm
uses: actions/cache@v4
with:
path: |
node_modules
.next/cache
.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
- name: setup-node
uses: actions/setup-node@v4
with:
node-version: 22
- name: install
run: yarn install
- name: build
run: yarn build
status-check:
runs-on: ubuntu-latest
needs: [lint, build-test]
if: failure()
steps:
- run: exit 1