fix merge conflicts

main
CrimsonTome 2022-09-17 03:18:52 +01:00 committed by Rowan Clark
parent f890176bd3
commit 08eb33ed28
No known key found for this signature in database
GPG Key ID: F620D51904044094
1 changed files with 9 additions and 3 deletions

View File

@ -6,9 +6,9 @@ name: CI
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
branches: ["main"]
pull_request:
branches: [ "main" ]
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
@ -24,10 +24,16 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v1
with:
<<<<<<< HEAD
node-version: '18.x'
- name: run Prettier
run: npx prettier --check .
=======
node-version: "18.x"
>>>>>>> 229a8cf (format all with prettier)
- name: Run npm
run: npm install && npm run build