Update the Dependencies installation guide (#59) #80
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: Run the js-node-esm-app tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
concurrency: ci-${{ github.ref }}-${{ github.workflow }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
# Install node | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Build workspace local package | |
run: | | |
cd workspace | |
npm install | |
npm run build | |
- name: Run js-node-esm-app tests | |
run: | | |
cd examples/js-esm-node-app | |
npm install | |
npm run test:ci |