chore(graph-layers): Add wits.json test data file from graph.gl S3 bucket #404
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: 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-latest | |
permissions: | |
checks: write | |
contents: read | |
# NOTE: Pin official GitHub actions to a version number, pin third-party actions to a SHA1. | |
# https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-third-party-actions | |
steps: | |
- uses: actions/[email protected] | |
- uses: volta-cli/action@v4 | |
- name: Install dependencies | |
run: | | |
yarn install | |
yarn bootstrap | |
- name: Run tests | |
run: | | |
yarn test-ci |