Dev cli update base asset #1168
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: Run Tests | |
on: | |
push: | |
branches: [main, dev] | |
pull_request: | |
branches: [main, dev] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ["18.x"] | |
solana: ["1.14.18"] | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Cache build artefacts | |
uses: Swatinem/[email protected] | |
with: | |
cache-on-failure: 'true' | |
- name: Install Solana | |
uses: ./.github/actions/install-solana | |
with: | |
solana_version: ${{ matrix.solana }} | |
- name: Setup Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Build | |
run: yarn build | |
- name: Lint | |
continue-on-error: false | |
shell: bash | |
run: yarn lint | |
- name: Validator | |
continue-on-error: false | |
shell: bash | |
run: yarn validator & sleep 3 | |
- name: Test | |
run: yarn test |