Skip to content

Bump semver from 5.7.1 to 5.7.2 #61

Bump semver from 5.7.1 to 5.7.2

Bump semver from 5.7.1 to 5.7.2 #61

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
node-jdbc:
name: node-jdbc
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
node_version:
- 12
- 14
- 15
- 16
java_version:
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
arch:
- x64
steps:
- name: 🧢 Get yarn cache directory path 🧢
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
- name: πŸ’΅ Cache πŸ’΅
uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-${{ matrix.node_version }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-${{ matrix.node_version }}-yarn-
${{ runner.os }}-yarn-
- name: β˜‘οΈ Checkout β˜‘οΈ
uses: actions/checkout@v2
- name: β˜• Java β˜•
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java_version }}
- name: 🐍 Python 🐍
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: πŸ”‹ Node πŸ”‹
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}
- name: πŸ’Ύ Install πŸ’Ύ
run: yarn install
- name: πŸ§ͺ Test (Node ${{ matrix.node_version }}, Java ${{ matrix.java_version }}) πŸ§ͺ
run: yarn test