Bump nanoid from 3.3.6 to 3.3.8 in /docs #106
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux | |
on: | |
push: | |
branches: [ master] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
env: | |
DBFARM: dbfarm | |
strategy: | |
matrix: | |
node: ['10', '12', '14', '16', '18', '20'] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci | |
- name: Install MonetDB | |
run: | | |
sudo apt-get update -qq | |
sudo apt-get install -y software-properties-common curl make | |
curl https://www.monetdb.org/downloads/MonetDB-GPG-KEY | sudo apt-key add - | |
sudo add-apt-repository 'deb http://dev.monetdb.org/downloads/deb/ focal monetdb' | |
sudo apt-get update -qq | |
sudo apt-get install -y monetdb5-server | |
- name: create database | |
run: | | |
monetdbd create ${{ env.DBFARM }} | |
monetdbd start ${{ env.DBFARM }} | |
monetdb create test | |
monetdb release test | |
monetdb start test | |
- name: Run Unit-Tests | |
run: | | |
npm t | |