Skip to content

chore(deps-dev): Bump @babel/preset-env from 7.25.4 to 7.25.8 #267

chore(deps-dev): Bump @babel/preset-env from 7.25.4 to 7.25.8

chore(deps-dev): Bump @babel/preset-env from 7.25.4 to 7.25.8 #267

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 18
- 20
architecture:
- x64
mongodb-version:
- 6.0
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
architecture: ${{ matrix.architecture }}
cache: yarn
- name: Install Dependencies
run: |
yarn
- name: Lint
run: |
yarn lint
- name: Build
run: |
yarn build
- name: Start MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: ${{ matrix.mongodb-version }}
mongodb-port: 27017
- name: Test
run: |
yarn coverage
- name: Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}