chore: Updated jobs on PR

This commit is contained in:
Ilya Artamonov
2022-12-17 12:06:35 +03:00
parent 8f689d393d
commit 0a7e33633d

View File

@@ -53,3 +53,18 @@ jobs:
cache: 'npm' cache: 'npm'
- run: npm i - run: npm i
- run: npm run build:package - run: npm run build:package
build-types:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16.x, 18.x ]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm i
- run: npm run build:types