chore: update repository codeowners #12
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: "Development" | |
| on: | |
| merge_group: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| - reopened | |
| jobs: | |
| test: | |
| name: Unit Tests and Lint Checks | |
| uses: open-sauced/hot/.github/workflows/development.yml@main | |
| build: | |
| name: Build application | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: "βοΈ checkout repository" | |
| uses: actions/checkout@v2 | |
| - name: "π§ setup node" | |
| uses: actions/setup-node@v2.1.5 | |
| with: | |
| node-version: 18 | |
| cache: "npm" | |
| - name: "π§ install npm@latest" | |
| run: npm i -g npm@latest | |
| - name: "π¦ install dependencies" | |
| uses: bahmutov/npm-install@v1 | |
| - name: "π static app" | |
| run: npm run build |