Skip to content
name: bolt installation stores CI Build
on:
push:
branches: [ main ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Node.js (${{ matrix.node-version }})
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm i
- name: bolt-mongoose
run: cd packages/bolt-mongoose && npm i && npm test
- name: bolt-prisma
run: cd packages/bolt-prisma && npm i && npm test
- name: bolt-sequelize
run: cd packages/bolt-sequelize && npm i && npm test
- name: bolt-typeorm
run: cd packages/bolt-typeorm && npm i && npm test