Skip to content

fix path

fix path #38

Workflow file for this run

name: 🧪 Integration Tests
on:
push:
branches: [ main ]
pull_request:
jobs:
lint:
name: 🔍 Lint and Annotate
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout repository
uses: actions/checkout@v4
- name: 📦 Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: 🔧 Install dependencies
run: npm ci
- name: 🔍 ESLint Annotate
uses: reviewdog/action-eslint@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
eslint_flags: '.'
tool_name: 'ESLint'
fail_level: 'error'
- name: 🎨 Stylelint Annotate
uses: reviewdog/action-stylelint@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
stylelint_input: 'src/**/*.{css,scss}'
build:
name: 🏗️ Build Test
runs-on: ubuntu-latest
steps:
- name: 📥 Checkout repository
uses: actions/checkout@v4
- name: 🏗️ Build Site
uses: ./.github/actions/build
with:
github_token: ${{ secrets.GITHUB_TOKEN }}