Skip to content

Merge pull request #51 from vanessanmd/media-tags-automation #86

Merge pull request #51 from vanessanmd/media-tags-automation

Merge pull request #51 from vanessanmd/media-tags-automation #86

Workflow file for this run

name: Lint and format
on: ['push']
jobs:
format:
name: Lint and format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- uses: actions/[email protected]
with:
node-version: '12.x'
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Format
run: |
npm ci
npm run format
- name: Commit changes
uses: stefanzweifel/[email protected]
with:
commit_message: 'style: :lipstick: Apply formatting changes'
branch: ${{ github.head_ref }}