Skip to content

Flexporter mapping for 130 and initial README #226

Flexporter mapping for 130 and initial README

Flexporter mapping for 130 and initial README #226

Workflow file for this run

name: Continuous Integration
on: [pull_request]
jobs:
checks:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
mongodb-version: ['7.0']
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Use MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: ${{ matrix.mongodb-version }}
- name: Start Redis
uses: supercharge/[email protected]
with:
redis-version: ${{ matrix.redis-version }}
- name: Setup Dependencies
run: npm ci
- name: Build
run: npm run build --if-present
- name: Lint
run: npm run lint
- name: Prettier
run: npm run prettier
- name: Unit Test
run: npm run test
coverage:
permissions:
checks: write
pull-requests: write
contents: write
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
mongodb-version: ['7.0']
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Use MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: ${{ matrix.mongodb-version }}
- name: Start Redis
uses: supercharge/[email protected]
with:
redis-version: ${{ matrix.redis-version }}
- name: Run Jest Coverage Report
uses: artiomtr/jest-coverage-report-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
threshold: 60
test-script: npm test