Skip to content

feat: remove algoscan #38

feat: remove algoscan

feat: remove algoscan #38

Workflow file for this run

name: Pull Request Checks
on:
pull_request:
jobs:
lint_build_test:
name: "Lint, Build & Test"
runs-on: ubuntu-latest
steps:
- name: "🛎 Checkout"
uses: actions/checkout@v3
- name: "🔧 Setup"
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
- name: "📦 Install"
run: yarn install --ignore-scripts
- name: "👕 Lint"
run: yarn lint
- name: "🏗️ Build"
run: yarn build
- name: "🧪 Test"
run: yarn test