build(deps): bump axios from 0.21.4 to 0.28.0 #11
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: Code Quality | |
on: | |
pull_request: | |
branches: | |
- main-ce | |
- production | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up the repository | |
uses: actions/checkout@v3 | |
- name: Set up NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ vars.NODE_VERSION }} | |
- name: Install Dependencies | |
run: npm ci | |
- name: Check lint | |
run: npm run lint |