|
|
@ -5,15 +5,17 @@ on: [push]
|
|
|
|
jobs:
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
matrix:
|
|
|
|
node-version: [14, 16, 18]
|
|
|
|
node-version: [14, 16, 18]
|
|
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
|
|
|
|
|
|
|
- name: Install pnpm
|
|
|
|
- name: Install pnpm
|
|
|
|
uses: pnpm/action-setup@v2.2.2
|
|
|
|
uses: pnpm/action-setup@v2
|
|
|
|
|
|
|
|
|
|
|
|
- name: Set node version to ${{ matrix.node_version }}
|
|
|
|
- name: Set node version to ${{ matrix.node_version }}
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|