Tests(e2e+unit), workflow update with eslint, 1inch & vs hodl apr fix etc. #7
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: ESLint Check | ||
# on: | ||
# push: | ||
# branches: [main, master] | ||
# pull_request: | ||
# branches: [main, master] | ||
# jobs: | ||
# lint: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - uses: actions/setup-node@v4 | ||
# with: | ||
# node-version: lts/* | ||
# - name: Install dependencies | ||
# run: | | ||
# yarn add eslint eslint-plugin-astro @typescript-eslint/parser @typescript-eslint/eslint-plugin eslint-plugin-prettier astro-eslint-parser --dev | ||
# - name: Run ESLint | ||
# run: yarn lint | ||
# timeout-minutes: 20 | ||
name: ESLint Check | ||
on: | ||
push: | ||
branches: [main, master] | ||
pull_request: | ||
branches: [main, master] | ||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
needs: setup | ||
steps: | ||
- name: Use common setup | ||
uses: ./.github/workflows/0_common-setup.yml | ||
- name: Run ESLint | ||
run: yarn lint | ||
timeout-minutes: 20 |