Skip to content

improve packagist service (#4) #18

improve packagist service (#4)

improve packagist service (#4) #18

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- name: Format with Prettier
run: npm run format
- name: Lint with ESLint
run: npm run lint