We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 968d00e commit 284d10dCopy full SHA for 284d10d
.github/workflows/on-pull-request.yml
@@ -5,11 +5,16 @@ on:
5
jobs:
6
on_pr:
7
runs-on: ubuntu-latest
8
+ env:
9
+ NODE_ENV: dev
10
steps:
11
- uses: actions/checkout@v2
12
+ - name: Set up Node
13
+ uses: actions/setup-node@v2
14
+ with:
15
+ node-version: '14'
16
- name: Install packages
17
run: |
- export NODE_ENV=dev
18
npm ci
19
npm run lerna-ci
20
- name: Run lint
.github/workflows/on-push.yml
@@ -6,11 +6,16 @@ jobs:
on_push:
if: ${{ github.event_name != 'pull_request' }}
21
0 commit comments