From 05f8539361c9cf94f08b8a25dbba1ff472ef574c Mon Sep 17 00:00:00 2001 From: swve Date: Mon, 8 May 2023 09:14:41 +0000 Subject: [PATCH] chore: use working directory front in ci sd d sd s --- .github/workflows/frontend-lint.yaml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/frontend-lint.yaml b/.github/workflows/frontend-lint.yaml index 59d8d058..648c41e8 100644 --- a/.github/workflows/frontend-lint.yaml +++ b/.github/workflows/frontend-lint.yaml @@ -1,18 +1,16 @@ -name: Frontend Lint -on: [ push, pull_request ] +name: Frontend Lint +on: [push, pull_request] jobs: next-lint: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - with: - path: front - name: Use Node.js uses: actions/setup-node@v2 with: node-version: 18.x - name: Install dependencies - run: npm ci + run: cd front && npm ci - name: Lint code - run: npm run lint \ No newline at end of file + run: cd front && npm run lint