Reupload
This commit is contained in:
commit
61cbd57af1
168 changed files with 31208 additions and 0 deletions
36
.github/workflows/github-actions-test.yml
vendored
Normal file
36
.github/workflows/github-actions-test.yml
vendored
Normal file
|
@ -0,0 +1,36 @@
|
|||
name: Run tests
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [18.x]
|
||||
mongodb-version: ['6.0']
|
||||
|
||||
steps:
|
||||
- name: Git checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
|
||||
- name: Start MongoDB
|
||||
uses: supercharge/mongodb-github-action@1.8.0
|
||||
with:
|
||||
mongodb-version: ${{ matrix.mongodb-version }}
|
||||
mongodb-username: DevUser
|
||||
mongodb-password: DevPassword
|
||||
mongodb-db: awary-test
|
||||
|
||||
- name: Install dependencies
|
||||
run: make server-setup
|
||||
|
||||
- name: Run tests
|
||||
run: make test
|
||||
env:
|
||||
CI: true
|
Loading…
Add table
Add a link
Reference in a new issue