chore: Bump to [email protected], [email protected] #7258
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: test | |
# On every pull request, but only on push to master | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
test-node: | |
runs-on: ubuntu-22.04 | |
permissions: | |
checks: write | |
contents: read | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Use Node.js | |
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 | |
with: | |
node-version: '18.x' | |
- name: Install dependencies | |
run: yarn | |
- name: Build | |
run: yarn bootstrap | |
- name: Run node tests | |
run: yarn test node | |
- name: Run browser tests and generate coverage | |
run: yarn cover | |
- name: Run lint and prettier | |
run: yarn lint | |
- name: Upload to Coveralls | |
uses: coverallsapp/github-action@09b709cf6a16e30b0808ba050c7a6e8a5ef13f8d # v1.2.5 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
test-python: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [3.8] | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Use Python ${{ matrix.python-version }} | |
uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Use Node.js | |
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0 | |
with: | |
node-version: '18.x' | |
- name: Install dependencies | |
run: | | |
cd bindings/pydeck | |
make setup-env | |
make init | |
cd ../pydeck-carto | |
make init | |
- name: Run pydeck tests | |
run: | | |
cd bindings/pydeck | |
make ci | |
- name: Run pydeck-carto tests | |
run: | | |
cd bindings/pydeck-carto | |
make ci |