https://github.com/sushiswap/list/compare/master...tunadriver:list:master#diff-fd6e66f55ac9c465f91963bbc6257347e809e34dd269b822f7091b1fb28c3cb3Add files via upload #2731
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: "Test Token Logos" | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- "logos/token-logos/network/**/**" | |
pull_request: | |
paths: | |
- "logos/token-logos/network/**/**" | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18] | |
pnpm-version: [8.9.2] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: pnpm/[email protected] | |
with: | |
version: ${{ matrix.pnpm-version }} | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'pnpm' | |
- name: Install dependencies and test | |
run: pnpm install && pnpm test | |
working-directory: './logos/token-logos' |