Skip to content

chore(deps): bump mobx from 6.12.0 to 6.12.3 #311

chore(deps): bump mobx from 6.12.0 to 6.12.3

chore(deps): bump mobx from 6.12.0 to 6.12.3 #311

Workflow file for this run

name: 👩‍⚕️ Star Atlas Factory Health Checks 👨‍⚕️️
on:
pull_request:
branches: [ main, develop ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.12.0 ]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Fetch git commit history
run: git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build
- name: Run linter
run: npm run lint
- name: Run tests
run: npm run test
- name: Check the dependencies of all packages for vulnerabilities
run: npm audit --audit-level=critical
- name: Ensure docs build
run: npm run docs