feat: listUploads includes parts property with list of links to CARs that contain it #3611
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: Lint | |
on: | |
pull_request: | |
types: | |
# Triggered when a pull request's head branch is updated. | |
# For example, when the head branch is updated from the base branch, when new commits are pushed to the head branch, or when the base branch is changed. | |
- synchronize | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
- uses: bahmutov/npm-install@v1 | |
- run: npm run lint |