Merge branch 'master' of github.com:spacebarchat/server

This commit is contained in:
Madeline 2023-08-27 16:56:22 +10:00
commit da58998bc9
No known key found for this signature in database
GPG Key ID: 1958E017C36F2E47
2 changed files with 6 additions and 6 deletions

View File

@ -2,9 +2,9 @@ name: Build
on: on:
push: push:
branches: [ "**" ] branches: [ "master" ]
pull_request: pull_request:
branches: [ "**" ] branches: [ "master" ]
jobs: jobs:
build: build:
@ -25,4 +25,4 @@ jobs:
cache: 'npm' cache: 'npm'
- run: npm ci - run: npm ci
- run: npm run build --if-present - run: npm run build --if-present
- run: npm run test --if-present - run: npm run test --if-present

View File

@ -2,9 +2,9 @@ name: Style
on: on:
push: push:
branches: [ "**" ] branches: [ "master" ]
pull_request: pull_request:
branches: [ "**" ] branches: [ "master" ]
jobs: jobs:
build: build:
@ -25,4 +25,4 @@ jobs:
cache: 'npm' cache: 'npm'
- run: npm i --only=dev - run: npm i --only=dev
- run: npx eslint . - run: npx eslint .
- run: npx prettier --check . - run: npx prettier --check .