Dependabot july2 #107
Workflow file for this run
This file contains hidden or 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: Pull Requests | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| merge_group: | |
| permissions: | |
| contents: read | |
| packages: read | |
| jobs: | |
| test: | |
| name: Testing and Linting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Set up Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: npm | |
| - name: Install dependencies | |
| run: | | |
| npm ci | |
| - name: Build packages | |
| run: | | |
| npx lerna run build --scope=@evolv/react | |
| npx lerna run build --scope=@evolv/nextjs | |
| - name: Run tests | |
| run: | | |
| npm test | |
| - name: Lint | |
| run: | | |
| npm run lint |