Skip to content

update code to match latest version of REACT #20

update code to match latest version of REACT

update code to match latest version of REACT #20

Workflow file for this run

name: Unit test core-lib
on:
push:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: vscode-extension
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
cache: "npm"
cache-dependency-path: "vscode-extension/package-lock.json"
- name: Install dependencies
run: npm run install:all
- name: Build all
run: npm run build:all
# remove because these are not real unit tests, they requires AWS CLI, SAM, and docker to be installed
# - name: Run unit tests
# run: npm run test:unit