A Discord Bot connected to your Pterodactyl API.
at main 19 lines 386 B view raw
1name: Node.js CI 2on: 3 pull_request: 4 branches: [ develop ] 5 push: 6 branches: [ develop ] 7jobs: 8 lint: 9 runs-on: ubuntu-latest 10 steps: 11 - uses: actions/checkout@v2 12 - name: Setup Node.js 13 uses: actions/setup-node@v2 14 with: 15 node-version: 18.9.1 16 - name: Intall Dependencies 17 run: npm install 18 - name: Execute lint 19 run: npm run lint