chore: sync with upstream #6
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: Stainless CI | |
on: | |
pull_request: | |
push: | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up node | |
uses: actions/setup-node@v2 | |
- name: Install dependencies | |
run: | | |
yarn install | |
- name: Run linter | |
run: | | |
yarn lint packages/cli | |
- name: Run tests | |
run: | | |
yarn test packages/cli |