Change slack to discord (#160) #377
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: CI | |
on: | |
push: | |
branches: main | |
tags: v* | |
pull_request: | |
branches: "*" | |
jobs: | |
lint: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4.2.2 | |
- run: corepack enable | |
- name: Configure Node.js | |
uses: actions/setup-node@v4.1.0 | |
with: | |
node-version: 20.x | |
cache: yarn | |
- run: yarn install --immutable | |
- run: yarn run tsc --noEmit # typecheck files that are not included by webpack or package builds | |
- run: yarn lint:ci | |
test: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4.2.2 | |
- run: corepack enable | |
- name: Configure Node.js | |
uses: actions/setup-node@v4.1.0 | |
with: | |
node-version: 20.x | |
cache: yarn | |
- run: yarn install --immutable | |
- name: test | |
run: yarn run test --maxWorkers=100% | |
e2e: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-20.04 | |
- ubuntu-22.04 | |
- windows-2022 | |
name: e2e (${{ matrix.os }}) | |
steps: | |
- uses: actions/checkout@v4.2.2 | |
# On windows we need to run `corepack enable` after setup-node and on linux we need | |
# to run it before. On linux it is ok to run it after as well. | |
- run: corepack enable | |
if: matrix.os == 'windows-2022' | |
- name: Configure Node.js | |
uses: actions/setup-node@v4.1.0 | |
with: | |
node-version: 20.x | |
- run: corepack enable | |
- run: yarn install --immutable | |
- run: yarn run tsc | |
# generate an extension using the in-repo create-foxglove-extension script | |
- name: create sample extension | |
run: node dist/bin/create-foxglove-extension sample | |
# confirm that the generated extension code passes lint | |
- name: lint generated extension code | |
working-directory: sample | |
run: npm run lint | |
# confirm that the generated extension code can be packaged with updated latest version of | |
# foxglove-extension scripts | |
# | |
# Note: this does not use the `npm run package` command since that would use the | |
# version of foxglove-extension scripts specified in the package.json which is not the local | |
# version of the scripts. | |
- name: package generated extension | |
working-directory: sample | |
run: node ../dist/bin/foxglove-extension.js package |