build(deps-dev): bump braces from 3.0.2 to 3.0.3 (#24) #134
This file contains 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: Tests | |
on: | |
push: | |
branches: master | |
pull_request: | |
branches: master | |
env: | |
NODE_VERSION: 20 | |
jobs: | |
test: | |
name: Extension Tests | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js ${{ env.NODE_VERSION }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
cache: npm | |
- name: NPM Install | |
run: | | |
npm ci | |
npm ls --depth=0 | |
- name: Build | |
run: npm run compile | |
- name: Compile node tests | |
run: npm run compile-tests | |
# - name: Compile web tests | |
# run: npm run compile-tests-web | |
- name: Vscode test | |
run: npm run test | |
# - name: Compile web tests | |
# run: npm run test-web |