Merge pull request #5 from jamdotdev/rui/chore/release-workflow #13
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 and Release | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build-and-lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: "18.15" | |
| cache: "yarn" | |
| - name: Install | |
| run: yarn install --frozen-lockfile --non-interactive | |
| - name: Build | |
| run: yarn build | |
| - name: Lint | |
| run: yarn lint | |
| deploy-github-pages: | |
| runs-on: ubuntu-latest | |
| needs: build-and-lint | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: "18.15" | |
| cache: "yarn" | |
| # Build base package, so links work | |
| - name: Install | |
| run: yarn install --frozen-lockfile --non-interactive | |
| - name: Build | |
| run: yarn build | |
| # For the mobx example | |
| - name: Install | |
| run: yarn install --frozen-lockfile --non-interactive | |
| working-directory: ./docs/todo-mobx-example | |
| - name: Build | |
| run: yarn build | |
| working-directory: ./docs/todo-mobx-example | |
| - name: Copy output | |
| run: mv docs/todo-mobx-example/dist docs/public && mv docs/public/dist docs/public/todo-mobx-example | |
| # End mobx example | |
| - name: Deploy | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./docs/public |