chore(deps): bump get-func-name from 2.0.0 to 2.0.2 #360
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: Pull request | |
on: [pull_request] | |
jobs: | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: yarn install | |
- name: Run eslint on changed files | |
uses: tj-actions/eslint-changed-files@v18 | |
with: | |
token: ${{ github.token }} | |
config_path: ".eslintrc.js" | |
file_extensions: | | |
src/**/*.ts | |
swagger: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: yarn install | |
- name: Generate the swagger file | |
run: yarn swagger |