summary refs log tree commit diff
path: root/.github/workflows
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-04-13 19:45:44 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-04-13 19:45:44 +1000
commit5a6cb33f5ead561cd2ac82afc7be6a00fc0707f7 (patch)
treee0a8a3b967a99b4a5c95c8b5a69a0b8a938c7a16 /.github/workflows
parentscripts n shit (diff)
parentfix style action (diff)
downloadserver-ts-5a6cb33f5ead561cd2ac82afc7be6a00fc0707f7.tar.xz
Merge branch 'master' into feat/refactorIdentify
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yml2
-rw-r--r--.github/workflows/style.yml28
2 files changed, 28 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml

index 5b27fddf..e3bcc81f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml
@@ -24,7 +24,5 @@ jobs: node-version: ${{ matrix.node-version }} cache: 'npm' - run: npm ci - - run: npx eslint . - - run: npx prettier --check . - run: npm run build --if-present - run: npm run test --if-present \ No newline at end of file diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml new file mode 100644
index 00000000..4fd62bae --- /dev/null +++ b/.github/workflows/style.yml
@@ -0,0 +1,28 @@ +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: npm i --only=dev + - run: npx eslint . + - run: npx prettier --check . \ No newline at end of file