Bump serve-static and express in /server #30
Workflow file for this run
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: lint | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push events. | |
push: | |
# Allows you to run this workflow manually from the Actions tab. | |
workflow_dispatch: | |
jobs: | |
prettier: | |
# The type of runner that the job will run on. | |
runs-on: ubuntu-latest | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can | |
# access it. | |
- uses: actions/checkout@v3 | |
- name: Format with Prettier | |
uses: creyD/prettier_action@v4.3 | |
with: | |
commit_message: Format code with Prettier |