Implement
range support for files/beatmap/audio
, added
new values for api v2, Fix
grades for lazer and widlcard support for ALLOWED_IPS
#506
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: PR-check | |
on: | |
pull_request: | |
concurrency: | |
group: lint-${{ github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
#runs-on: ubuntu-latest | |
runs-on: windows-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Install Node.js 🔧 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.11.1 | |
- name: Install Deps 🔧 | |
run: | | |
npm install -g [email protected] | |
pnpm install --frozen-lockfile | |
- name: Lint PR (prettier) | |
run: | | |
pnpm run prettier:ci | |
- name: Lint PR (eslint) | |
run: | | |
pnpm run lint:ci |