Skip to content

Fix typos

Fix typos #49

Workflow file for this run

name: Test
on: [pull_request]
jobs:
lint:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Read .nvmrc
run: echo ::set-output name=NVMRC::$(cat .nvmrc)
id: node_version
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: '${{ steps.node_version.outputs.NVMRC }}'
- name: Load PHP dependencies
uses: php-actions/composer@v1
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Check bundlesize
run: npm run test:bundlesize
- name: Lint scripts
run: npm run lint:scripts
- name: Lint PHP
run: npm run lint:php
- name: Run static analysis
run: npm run phpstan