Skip to content
This repository has been archived by the owner on Jul 14, 2023. It is now read-only.

Commit

Permalink
Update build-check.yml (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
Süleyman Barman authored Feb 22, 2022
1 parent 6151b2e commit aeda46b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/build-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,17 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: '10.x'
node-version: ${{ matrix.node-version }}

- run: npm ci
- run: npm install

0 comments on commit aeda46b

Please sign in to comment.