Feature/60: basic retrieve-support for deliveryProfile #1142
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
# Custom tests for mcdev | |
# | |
name: 'Code Testing' | |
on: | |
push: | |
branches: [main, develop, hotfix] | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: [main, develop, hotfix] | |
jobs: | |
testAndCoverage: | |
name: lint & test | |
runs-on: ubuntu-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18.16 | |
registry-url: https://registry.npmjs.org/ | |
- run: npm ci --ignore-scripts | |
- run: npm run lint | |
# Assuming code passes, run tests | |
- name: Run mcdev-tests | |
run: npm run test |