rework approach

This commit is contained in:
Maxim Lobanov 2020-06-29 19:02:50 +03:00
parent 0e2f9cde8b
commit 1364035bf3
8 changed files with 328 additions and 55 deletions

View file

@ -41,6 +41,19 @@ steps:
- run: npm test
```
Checking latest version of Node.js:
(By default, action searches version locally before downloading it. This flag forces action to check if local version is the latest one)
```yaml
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '12'
check-latest: true
- run: npm install
- run: npm test
```
Matrix Testing:
```yaml
jobs: