Merge pull request #8 from teambit/david-testing-bit-ci-1 #53
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: Bit verify | |
| on: push | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: bitsrc/stable:latest-alpine | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: bit install | |
| env: | |
| BIT_CONFIG_USER_TOKEN: ${{ secrets.BIT_ACCESS_TOKEN }} | |
| - name: List components | |
| run: bit list automations.design | |
| env: | |
| BIT_CONFIG_USER_TOKEN: ${{ secrets.BIT_ACCESS_TOKEN }} | |
| - name: Verify workspace | |
| run: bit ci verify | |
| env: | |
| BIT_CONFIG_USER_TOKEN: ${{ secrets.BIT_ACCESS_TOKEN }} |