Skip to content

Commit fd4d266

Browse files
author
Volodymyr Malyhin
committed
chore: refactor test run action
1 parent ac08849 commit fd4d266

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

.github/workflows/runTestsOnPush.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,16 @@ name: Build and Test
33
jobs:
44
build:
55
name: Build
6-
runs-on: ${{ matrix.os }}
7-
strategy:
8-
matrix:
9-
node-version: [12, 14, 16, 17]
10-
os: [macos-latest, ubuntu-latest, windows-latest]
116

127
steps:
138
- uses: actions/checkout@master
149

1510
- name: Setup Node
1611
uses: actions/setup-node@v4
1712
with:
18-
node-version: ${{ matrix.node-version }}
13+
node-version: 20.8.0
14+
cache: yarn
15+
cache-dependency-path: '**/yarn.lock'
1916

2017
- name: Install Yarn
2118
run: npm install -g yarn

0 commit comments

Comments
 (0)