strategy:
fail-fast: false
steps:
+ - uses: actions/checkout@v2
- name: Set up node.js
uses: actions/setup-node@v2
with:
node-version: "14"
- - uses: actions/checkout@v2
+ cache: "npm"
- run: npm install
- run: npx tsc --noEmit
eslint:
strategy:
fail-fast: false
steps:
+ - uses: actions/checkout@v2
- name: Set up node.js
uses: actions/setup-node@v2
with:
node-version: "14"
- - uses: actions/checkout@v2
+ cache: "npm"
- run: npm install
- run: npx eslint .
javascript_sync:
strategy:
fail-fast: false
steps:
+ - uses: actions/checkout@v2
- name: Set up node.js
uses: actions/setup-node@v2
with:
node-version: "14"
- - uses: actions/checkout@v2
+ cache: "npm"
- run: npm install
- run: npx tsc
- run: echo "::add-matcher::.github/diff.json"