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.
22 lines
408 B
22 lines
408 B
name: deploy
|
|
|
|
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: 15
|
|
- name: Install Dependencies
|
|
run: yarn install
|
|
- name: Check for syntax errors
|
|
run: yarn build
|