Replace Makefile with atmos.yaml #329
Workflow file for this run
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
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.ref }} | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 16 | |
| cache: "yarn" | |
| - name: Install Dependencies | |
| run: yarn --frozen-lockfile --prefer-offline | |
| - name: Linting | |
| run: yarn lint | |
| - name: Format Source Code | |
| run: yarn format | |
| - name: Unit Tests | |
| run: yarn test | |
| - name: Build | |
| run: yarn build | |
| - name: Commit and Push Changes | |
| uses: EndBug/add-and-commit@v9 | |
| with: | |
| committer_name: GitHub Actions | |
| # https://github.blog/changelog/2021-02-08-github-actions-skip-pull-request-and-push-workflows-with-skip-ci/ | |
| message: "chore: [skip-ci] format code and generate build artifacts" | |
| add: "." | |
| push: origin HEAD:${{ github.head_ref }} |