feat: allow access Joule
from VS Code
#854
Workflow file for this run
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: Continuous Integration | |
on: | |
# Trigger the workflow on push or pull request, | |
# but only for the main branch | |
# See: https://github.community/t/duplicate-checks-on-push-and-pull-request-simultaneous-event/18012 | |
push: | |
branches: | |
- main* | |
pull_request: | |
branches: | |
- main* | |
jobs: | |
build: | |
name: Full Build (node ${{ matrix.node_version }}) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node_version: | |
- 20.x | |
# https://stackoverflow.com/questions/61070925/github-actions-disable-auto-cancel-when-job-fails | |
fail-fast: false | |
steps: | |
# using `v1` because of: https://github.com/actions/checkout/issues/246 | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node_version }} | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 7 | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build | |
run: pnpm run ci |