Skip to content

fix(common): resolve broken adjacency graph import (#330) #24

fix(common): resolve broken adjacency graph import (#330)

fix(common): resolve broken adjacency graph import (#330) #24

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: TestBuildTypes
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
name: Run tests build types
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24.x]
steps:
- name: Check out Git repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install Node.js dependencies
run: yarn --frozen-lockfile
- name: Build source
run: yarn build
- name: Run tests build types
run: yarn test:types