chore(deps): update dependency concurrently to v9 #2782
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: CI | |
on: | |
pull_request_target: | |
# Types must be filtered to prevent getting stuck when a | |
# bot with GITHUB_TOKEN pushes commits against the PR branch | |
types: | |
- opened | |
- reopened | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: yarn install | |
run: | | |
yarn | |
- name: Turborepo | |
run: | | |
yarn ci | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist.zip | |
path: | | |
packages/chrome-extension/dist |