(turbo-module): release next canary version #82
Workflow file for this run
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
on: | |
pull_request: | |
types: | |
- synchronize | |
- opened | |
name: PR | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: whop | |
concurrency: | |
group: pr-action-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
unimported: | |
name: Check unimported | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: whopio/[email protected] | |
with: | |
token: ${{ github.token }} | |
projects: "packages/action,packages/create-turbo-module,packages/turbo-module" | |
install: | |
name: Install node modules | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.15.5 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
check-latest: true | |
cache: pnpm | |
- name: Install all packages | |
run: pnpm install | |
lint: | |
name: Lint repository | |
needs: install | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.15.5 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
check-latest: true | |
cache: pnpm | |
- name: Install all packages | |
run: pnpm install | |
- name: Run eslint | |
run: pnpx [email protected] ./ --max-warnings 0 | |
build: | |
name: Build packages | |
needs: install | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.15.5 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
check-latest: true | |
cache: pnpm | |
- name: Install all packages | |
run: pnpm install | |
- name: Build packages | |
run: pnpm turbo build | |
test: | |
name: Test repository | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8.15.5 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
check-latest: true | |
cache: pnpm | |
- name: Install all packages | |
run: pnpm install | |
- name: Build packages | |
run: pnpm turbo test | |