Update all non-major dependencies #558
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: 'CI' | |
# env: | |
# VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
# VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
prettier: | |
name: Prettier check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Delete previous runs | |
uses: styfle/[email protected] | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Cache pnpm modules | |
uses: actions/cache@v2 | |
with: | |
path: '~/.pnpm-store' | |
key: ${{ runner.os }}- | |
- uses: pnpm/[email protected] | |
with: | |
version: 8.3.1 | |
run_install: true | |
- name: Prettier | |
run: pnpm prettier:check | |
eslint: | |
name: Eslint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Delete previous runs | |
uses: styfle/[email protected] | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Cache pnpm modules | |
uses: actions/cache@v2 | |
with: | |
path: '~/.pnpm-store' | |
key: ${{ runner.os }}- | |
- uses: pnpm/[email protected] | |
with: | |
version: 8.3.1 | |
run_install: true | |
- name: ESLint | |
run: pnpm lint | |
typecheck: | |
name: Typecheck | |
runs-on: ubuntu-latest | |
steps: | |
- name: Delete previous runs | |
uses: styfle/[email protected] | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Cache pnpm modules | |
uses: actions/cache@v2 | |
with: | |
path: '~/.pnpm-store' | |
key: ${{ runner.os }}- | |
- uses: pnpm/[email protected] | |
with: | |
version: 8.3.1 | |
run_install: true | |
- name: TypeScript | |
run: pnpm typecheck | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Cache pnpm modules | |
uses: actions/cache@v2 | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}- | |
- uses: pnpm/[email protected] | |
with: | |
version: 8.3.1 | |
run_install: true | |
- name: Build | |
run: pnpm build | |
# preview: | |
# name: Deploy preview | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Delete previous runs | |
# uses: styfle/[email protected] | |
# - name: Checkout repo | |
# uses: actions/checkout@v3 | |
# - name: Use Node.js | |
# uses: actions/setup-node@v3 | |
# with: | |
# node-version: 16 | |
# - name: Cache pnpm modules | |
# uses: actions/cache@v2 | |
# with: | |
# path: '~/.pnpm-store' | |
# key: ${{ runner.os }}- | |
# - uses: pnpm/[email protected] | |
# with: | |
# version: 8.3.1 | |
# run_install: true | |
# - name: Install Vercel CLI | |
# run: pnpm install --global vercel@latest | |
# - name: Pull Vercel Environment Information | |
# run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }} | |
# - name: Build Project Artifacts | |
# run: vercel build --token=${{ secrets.VERCEL_TOKEN }} | |
# - name: Deploy Project Artifacts to Vercel | |
# run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }} |