Skip to content

build(deps-dev): bump the development-dependencies group in /mc with 3 updates #410

build(deps-dev): bump the development-dependencies group in /mc with 3 updates

build(deps-dev): bump the development-dependencies group in /mc with 3 updates #410

Workflow file for this run

name: MC CI
on:
push:
branches:
- main
paths-ignore:
- '**.md'
- 'docs/**'
pull_request:
branches:
- main
paths-ignore:
- '**.md'
- 'docs/**'
jobs:
worker-lint:
name: Lint the managed component
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
working-directory: ./mc
run: npm ci
- name: Run lint
working-directory: ./mc
run: npm run lint
mc-test:
name: Run Tests for managed component
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
working-directory: ./mc
run: npm ci
- name: Run tests
working-directory: ./mc
run: npm test
test-build:
name: Test Build for managed component
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies for mc
working-directory: ./mc
run: npm ci
- name: Build
working-directory: ./mc
run: npm run build