diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/legacy.yml | 8 | ||||
-rw-r--r-- | .github/workflows/modern.yml | 8 |
2 files changed, 6 insertions, 10 deletions
diff --git a/.github/workflows/legacy.yml b/.github/workflows/legacy.yml index 6edcd1db..66aafa38 100644 --- a/.github/workflows/legacy.yml +++ b/.github/workflows/legacy.yml @@ -5,12 +5,12 @@ on: branches: - master paths: - - web/** + - legacy/** pull_request: branches: - master paths: - - web/** + - legacy/** jobs: build: @@ -22,6 +22,8 @@ jobs: - uses: actions/setup-node@v3 with: cache: npm - cache-dependency-path: package-lock.json + cache-dependency-path: legacy/package-lock.json - run: npm ci --ignore-scripts + working-directory: legacy - run: npm run lint + working-directory: legacy diff --git a/.github/workflows/modern.yml b/.github/workflows/modern.yml index ebf155a2..88e1bdb4 100644 --- a/.github/workflows/modern.yml +++ b/.github/workflows/modern.yml @@ -4,13 +4,9 @@ on: push: branches: - master - paths: - - modern/** pull_request: branches: - master - paths: - - modern/** jobs: build: @@ -22,8 +18,6 @@ jobs: - uses: actions/setup-node@v3 with: cache: npm - cache-dependency-path: modern/package-lock.json + cache-dependency-path: package-lock.json - run: npm ci - working-directory: modern - run: npm run lint - working-directory: modern |