Update main.yml #28
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: Main | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
SOLANA_VERSION: 1.18.4 | |
jobs: | |
lint: | |
name: Check styling | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Check linting | |
run: pnpm run lint | |
tests: | |
name: Test | |
runs-on: ubuntu-latest | |
if: false | |
strategy: | |
matrix: | |
solana: ["1.17.24", "1.18.4"] | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Install Solana | |
uses: metaplex-foundation/actions/install-solana@v1 | |
with: | |
version: ${{ matrix.solana }} | |
- name: Pre-scaffold projects for caching purposes | |
run: pnpm snapshot --scaffold-only | |
- name: Cache cargo crates | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
./projects/**/.cargo/ | |
./projects/**/target/ | |
key: ${{ runner.os }}-crates-solana-v${{ matrix.solana }}-${{ hashFiles('projects/**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-crates-solana-v${{ matrix.solana }} | |
- name: Build and run tests | |
run: pnpm test | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' | |
needs: [lint] | |
outputs: | |
published: ${{ steps.changesets.outputs.published }} | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
token: ${{ secrets.PAT_GITHUB }} | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: "pnpm" | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Install Solana | |
uses: metaplex-foundation/actions/install-solana@v1 | |
with: | |
version: ${{ env.SOLANA_VERSION }} | |
- name: Pre-scaffold projects for caching purposes | |
run: pnpm snapshot --scaffold-only | |
- name: Cache cargo crates | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
./projects/**/.cargo/ | |
./projects/**/target/ | |
key: ${{ runner.os }}-crates-solana-v${{ env.SOLANA_VERSION }}-${{ hashFiles('projects/**/Cargo.lock') }} | |
restore-keys: | | |
${{ runner.os }}-crates-solana-v${{ env.SOLANA_VERSION }} | |
- name: Create Release Pull Request or Publish | |
id: changesets | |
uses: changesets/action@v1 | |
with: | |
publish: ./node_modules/.bin/changeset publish | |
env: | |
GITHUB_TOKEN: ${{ secrets.PAT_GITHUB }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |