Skip to content

Commit 22a7b7b

Browse files
committed
chore(ci-cd): remove duplicate workflow
GH-64
1 parent 89818c3 commit 22a7b7b

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

.github/workflows/pull_request.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
1-
on: pull_request
2-
name: Lint npm packages on pull request
3-
jobs:
4-
npmLint:
5-
name: npm lint
6-
runs-on: ubuntu-latest
7-
steps:
8-
- name: Checkout latest code
9-
uses: actions/checkout@v2
10-
- name: Cache node modules
11-
id: cache-nodemodules
12-
uses: actions/cache@v3
13-
env:
14-
cache-name: ${{ github.event.repository.name }}
15-
with:
16-
# caching node_modules
17-
path: node_modules
18-
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
19-
restore-keys: |
20-
${{ runner.os }}-build-${{ env.cache-name }}-
1+
# on: pull_request
2+
# name: Lint npm packages on pull request
3+
# jobs:
4+
# npmLint:
5+
# name: npm lint
6+
# runs-on: ubuntu-latest
7+
# steps:
8+
# - name: Checkout latest code
9+
# uses: actions/checkout@v2
10+
# - name: Cache node modules
11+
# id: cache-nodemodules
12+
# uses: actions/cache@v3
13+
# env:
14+
# cache-name: ${{ github.event.repository.name }}
15+
# with:
16+
# # caching node_modules
17+
# path: node_modules
18+
# key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
19+
# restore-keys: |
20+
# ${{ runner.os }}-build-${{ env.cache-name }}-
2121

22-
- name: Run npm install
23-
if: steps.cache-nodemodules.outputs.cache-hit != 'true'
24-
run: npm ci --ignore-scripts
22+
# - name: Run npm install
23+
# if: steps.cache-nodemodules.outputs.cache-hit != 'true'
24+
# run: npm ci --ignore-scripts
2525

26-
- name: Install Lerna
27-
run: npm i -g [email protected] --ignore-scripts
26+
# - name: Install Lerna
27+
# run: npm i -g [email protected] --ignore-scripts
2828

29-
- name: Bootstrap Monorepo
30-
run: lerna bootstrap --ignore-scripts
29+
# - name: Bootstrap Monorepo
30+
# run: lerna bootstrap --ignore-scripts
3131

32-
- name: Run test
33-
run: lerna run test
32+
# - name: Run test
33+
# run: lerna run test

0 commit comments

Comments
 (0)