Skip to content

feat: upstream TableCaption from MSM MAASENG-2987 #646

feat: upstream TableCaption from MSM MAASENG-2987

feat: upstream TableCaption from MSM MAASENG-2987 #646

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
task: ['build', 'lint', 'test']
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: "lts/*"
- name: Install dependencies
run: npm clean-install
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
run: npm audit signatures
- name: Run task
run: npm run ${{ matrix.task }}