-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn-test-lint.yml
42 lines (36 loc) · 1.03 KB
/
yarn-test-lint.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
41
42
name: Yarn CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test_lint:
runs-on: ubuntu-latest
strategy:
matrix:
# Specify all desired node versions
node-version: [10.x]
steps:
# Setup Runner with node
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: actions/cache@v2 (node_modules)
uses: actions/cache@v2
# Use this ID to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
id: yarn-cache
with:
path: "node_modules/"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-modules-
# Run all CI actions
- name: yarn install
run: yarn install --frozen-lockfile
- name: yarn run test
run: yarn run test
- name: yarn run lint
run: yarn run lint