Skip to content

[Snyk] Security upgrade aiohttp from 3.8.6 to 3.9.0 #58

[Snyk] Security upgrade aiohttp from 3.8.6 to 3.9.0

[Snyk] Security upgrade aiohttp from 3.8.6 to 3.9.0 #58

Workflow file for this run

name: Linting
on:
pull_request:
branches: ["master"]
jobs:
Lint:
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [18]
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- name: Install Dependencies
run: npm install
- name: Run Linter (check only)
run: npm run lint
Prettier:
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [18]
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- name: Install Dependencies
run: npm install
- name: Run Prettier (check only)
run: npm run prettier