diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2023-04-12 20:36:55 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2023-04-12 20:36:55 +1000 |
commit | f81e92a159705c868c59ed823352ff6e15087580 (patch) | |
tree | ef64e1370f1e9dd14d8127d11d608caca4ef6e7f /.github/workflows/style.yml | |
parent | fix crowdin badge (diff) | |
download | server-f81e92a159705c868c59ed823352ff6e15087580.tar.xz |
Move prettier and eslint into separate workflow
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/style.yml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml new file mode 100644 index 00000000..931449b7 --- /dev/null +++ b/.github/workflows/style.yml @@ -0,0 +1,27 @@ +name: Style + +on: + push: + branches: [ "**" ] + pull_request: + branches: [ "**" ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [18.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + + steps: + - uses: actions/checkout@v3 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + cache: 'npm' + - run: npx eslint . + - run: npx prettier --check . \ No newline at end of file |