You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
462 B
24 lines
462 B
name: build
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
typescript:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup checkout
|
|
uses: actions/checkout@v2
|
|
- name: Setup NodeJS v12
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 12
|
|
- name: Install Dependencies
|
|
run: yarn install
|
|
- name: Check for syntax errors
|
|
run: yarn test-build
|
|
- name: ESlint check
|
|
run: yarn lint
|