Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ body:
value: |
Tips: Before filing a new bug:
Check [existing issues](https://github.com/visgl/deck.gl-community/issues)to avoid filing duplicate bugs.
You may find answers faster by searching in [the documentation](https://deck.gl-community/search).
You may find answers faster by searching in the documentation.
- type: checkboxes
id: flavor
attributes:
Expand Down
28 changes: 21 additions & 7 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,25 +13,39 @@ permissions:
jobs:
test-node:
runs-on: ubuntu-latest

permissions:
checks: write
contents: read

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- uses: volta-cli/action@5c175f92dea6f48441c436471e6479dbc192e194 # v4.2.1
with:
node-version: 22
cache: 'yarn'

- name: Install dependencies
run: |
yarn
yarn bootstrap
yarn install
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false

- name: Build code
run: |
yarn build

- name: Run tests in Puppeteer and generage Coverage
run: |
yarn test cover

- name: Build packages
run: yarn build
- name: Run tests on Node
run: |
yarn test node

- name: Run tests
- name: Run lint
run: |
yarn lint
yarn test

- name: Test website build
run: |
yarn test-website
Loading