Merge pull request #3 from LIT-Protocol/LIT-2791 #38
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 checks | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: "Lint" | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Install PNPM | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8.15.5 | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'pnpm' | |
- name: Install project dependencies | |
run: pnpm install | |
- name: Build packages - for Typescript workspace references | |
run: pnpm build | |
- name: Lint | |
run: pnpm lint | |
- name: Validate Recipients JSON format | |
run: pnpm ci_validate | |
tests: | |
needs: 'lint' | |
name: 'Tests' | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Install PNPM | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8.15.5 | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'pnpm' | |
- name: Install project dependencies | |
run: pnpm install | |
- name: Build packages - for Typescript workspace references | |
run: pnpm build | |
- name: Tests | |
run: pnpm test |