Skip to content

docs: added SQLiteStudio to README (closes #68) #171

docs: added SQLiteStudio to README (closes #68)

docs: added SQLiteStudio to README (closes #68) #171

Workflow file for this run

name: test
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
workflow_dispatch:
jobs:
test:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-20.04
- macos-latest
- windows-2019
node:
- 18
- 20
name: Testing Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- run: npm install --ignore-scripts
- run: npm run build-debug
- run: npm test
test-alpine-linux:
name: Testing Node 18 on Alpine-Linux
runs-on: ubuntu-latest
container: node:18-alpine
steps:
- uses: actions/checkout@v3
- run: apk add build-base git python3 --update-cache
- run: npm install --ignore-scripts
- run: npm run build-debug
- run: npm test
test-alpine-linux-arm64:
name: Testing Node 18 on Alpine-Linux (arm64)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2
- run: |
docker run --rm -v $(pwd):/tmp/project --entrypoint /bin/sh --platform linux/arm64 node:18-alpine -c "\
apk add build-base git python3 --update-cache && \
cd /tmp/project && \
npm install --ignore-scripts && \
npm run build-debug && \
npm test"
test-linux-arm:
strategy:
fail-fast: false
matrix:
arch:
- arm/v7
- arm64
name: Testing Node 18 on Linux (${{ matrix.arch }})
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2
- run: |
docker run --rm -v $(pwd):/tmp/project --entrypoint /bin/sh --platform linux/${{ matrix.arch }} node:18 -c "\
cd /tmp/project && \
npm install --ignore-scripts && \
npm run build-debug && \
npm test"