Skip to content

Lottery SE

Lottery SE #22

Workflow file for this run

name: Discord module
on:
pull_request:
branches:
- draftbot-v5
paths:
- Discord/**
jobs:
eslint-discord-module:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v3
# Setup Node.js environment once for all jobs
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '18'
# Install and cache dependencies for the Discord subproject
- name: Cache Discord dependencies
uses: actions/cache@v3
with:
path: ./Discord/node_modules
key: ${{ runner.os }}-discord-dependencies-${{ hashFiles('./Discord/yarn.lock') }}
- name: Install dependencies and Run ESLint in Discord folder
working-directory: ./Discord
run: |
yarn install
yarn eslint