chore(deps-dev): bump mongodb from 4.16.0 to 4.17.0 #6429
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Build & Release | |
on: | |
push: | |
pull_request: | |
branches: [production] | |
types: [opened, synchronize, closed] | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile --network-timeout 500000 --ignore-engines | |
- name: Run lint | |
run: yarn test:lint | |
test-integration: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
node-version: [16.x, 18.x, 19.x] | |
exclude: | |
- os: macos-latest | |
node-version: 19.x | |
- os: macos-latest | |
node-version: 16.x | |
- os: windows-latest | |
node-version: 19.x | |
- os: windows-latest | |
node-version: 16.x | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile --network-timeout 500000 --ignore-engines | |
- name: Run build | |
run: yarn tsc --build | |
env: | |
FORCE_COLOR: true | |
- name: Run test | |
run: yarn test:integration | |
env: | |
FORCE_COLOR: true | |
test-core: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile --network-timeout 500000 --ignore-engines | |
- name: Run build | |
run: yarn tsc --build | |
- name: Run test | |
run: yarn test:core --since origin/production | |
test-specs: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile --network-timeout 500000 --ignore-engines | |
- name: Run build | |
run: yarn tsc --build | |
- name: Run test | |
run: yarn test:specs --since origin/production | |
test-platform: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile --network-timeout 500000 --ignore-engines | |
- name: Run build | |
run: yarn tsc --build | |
- name: Run test | |
run: yarn test:platform --since origin/production | |
test-orm: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile --network-timeout 500000 --ignore-engines | |
- name: Run build | |
run: yarn tsc --build | |
- name: Run test | |
run: yarn test:orm --since origin/production | |
test-graphql: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile --network-timeout 500000 --ignore-engines | |
- name: Run build | |
run: yarn tsc --build | |
- name: Run test | |
run: yarn test:graphql --since origin/production | |
test-security: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile --network-timeout 500000 --ignore-engines | |
- name: Run build | |
run: yarn tsc --build | |
- name: Run test | |
run: yarn test:security --since origin/production | |
test-third-parties: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile --network-timeout 500000 --ignore-engines | |
- name: Run build | |
run: yarn tsc --build | |
- name: Run test | |
run: yarn test:third-parties --since origin/production | |
test-formio: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile --network-timeout 500000 --ignore-engines | |
- name: Run build | |
run: yarn tsc --build | |
- name: Run test | |
run: yarn test:formio --since origin/production | |
deploy-packages: | |
runs-on: ubuntu-latest | |
needs: | |
[lint, test-core, test-specs, test-platform, test-integration, test-orm, test-security, test-graphql, test-third-parties, test-formio] | |
if: github.event_name != 'pull_request' && contains(' | |
refs/heads/production | |
refs/heads/alpha | |
refs/heads/beta | |
refs/heads/rc | |
', github.ref) | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile --ignore-engines --network-timeout 500000 | |
- name: Release packages | |
env: | |
CI: true | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
run: yarn release | |
publish-docs: | |
runs-on: ubuntu-latest | |
needs: deploy-packages | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: "production" | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile --ignore-engines --network-timeout 500000 | |
- name: Build pages | |
env: | |
CI: true | |
run: yarn api:build && yarn vuepress:docs:build | |
- name: Publish pages | |
env: | |
CI: true | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: yarn docs:publish |