-
-
Notifications
You must be signed in to change notification settings - Fork 61
40 lines (35 loc) · 959 Bytes
/
core-module.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Core module
on:
pull_request:
branches:
- draftbot-v5
paths:
- Core/**
jobs:
eslint-core-module:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v3
# Setup Node.js environment once for all jobs
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Setup Yarn
run: |
corepack enable
yarn set version stable
# Cache Yarn dependencies for Core module
- name: Cache Core dependencies
uses: actions/cache@v3
with:
path: |
./Core/.yarn/cache
./Core/.pnp.cjs
key: ${{ runner.os }}-core-dependencies-${{ hashFiles('./Core/yarn.lock') }}
- name: Install dependencies and Run ESLint in Core folder
working-directory: ./Core
run: |
yarn install
yarn eslint