Skip to content

⬆️ Bump eslint from 8.54.0 to 8.55.0 #3261

⬆️ Bump eslint from 8.54.0 to 8.55.0

⬆️ Bump eslint from 8.54.0 to 8.55.0 #3261

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Install Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies πŸ“¦
run: yarn
- name: Lint 🎨
run: yarn run test:lint
- name: TypeScript check 🏷
run: yarn run tscheck
- name: Tests βœ…
run: yarn run test:unit
- name: Upload Coverage πŸ“ˆ
run: yarn run test:coverage