Provide people with tabs so they can use classes as well (#4284) #744
  
    
      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: Push | |
| on: push | |
| jobs: | |
| ci: | |
| uses: ./.github/workflows/ci.yml | |
| secrets: | |
| codecov_token: ${{ secrets.CODECOV_TOKEN }} | |
| deploy-to-npm-branch: | |
| name: Deploy to `npm` branch | |
| needs: ci | |
| if: github.ref == 'refs/heads/main' | |
| uses: ./.github/workflows/deploy-artifact-as-branch.yml | |
| with: | |
| environment: npm-branch | |
| artifact_name: npmDist | |
| target_branch: npm | |
| commit_message: "Deploy ${{github.event.workflow_run.head_sha}} to 'npm' branch" | |
| deploy-to-deno-branch: | |
| name: Deploy to `deno` branch | |
| needs: ci | |
| if: github.ref == 'refs/heads/main' | |
| uses: ./.github/workflows/deploy-artifact-as-branch.yml | |
| with: | |
| environment: deno-branch | |
| artifact_name: denoDist | |
| target_branch: deno | |
| commit_message: "Deploy ${{github.event.workflow_run.head_sha}} to 'deno' branch" |