Skip to content

typo xD

typo xD #3348

Workflow file for this run

name: CI
on:
pull_request:
push:
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [10, 12]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
version: ${{ matrix.node_version }}
- name: Install Dependencies
run: yarn
- name: Lint
run: yarn lint
- name: Build
run: yarn build