Sync quickstart projects (#16) #8
This file contains 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: PR 🚀 | |
on: | |
push: | |
branches: [main] | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install package manager (from package.json) | |
run: | | |
corepack enable | |
corepack install | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: package.json | |
cache: "yarn" | |
- name: Install deps | |
run: yarn install --frozen-lockfile --immutable | |
- name: Tests | |
run: yarn coverage | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Code styles | |
run: yarn lint | |
- name: Formatting | |
run: yarn prettier --check . | |
- name: Build | |
run: yarn build |