Mainnet deployment v5 (#259) #756
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: Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main,dev] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| node-version: [20.x] | |
| os: [macos-latest] | |
| steps: | |
| - name: Setup Repo | |
| uses: actions/checkout@v4 | |
| - name: Uses node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install all workspaces | |
| run: yarn install --immutable | |
| - name: Seutp workspaces | |
| run: yarn workspaces foreach run compile | |
| - name: Lint | |
| run: yarn workspaces foreach run lint | |
| - name: Test | |
| run: yarn workspaces foreach run test |