Skip to content

feat: add spam tokens blacklist #1

feat: add spam tokens blacklist

feat: add spam tokens blacklist #1

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
types: [opened, synchronize]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Node.js and Yarn
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- name: Install Dependencies
run: yarn
- name: Run Lint
run: yarn lint
- name: Run Format
run: yarn format
- name: Check for Changes
run: git diff --exit-code