Skip to content

feat(system): Filter system metadata by workspace and variable chaining #81

feat(system): Filter system metadata by workspace and variable chaining

feat(system): Filter system metadata by workspace and variable chaining #81

Workflow file for this run

name: PR
on:
pull_request:
branches:
- main
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Unit tests
run: npm run test:ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build