update code to match latest version of REACT #20
This file contains hidden or 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
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 |