Skip to content

Instantly share code, notes, and snippets.

@arnabkd
Created December 25, 2019 22:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arnabkd/63b7038eba10de6fbdac8a5b617d0352 to your computer and use it in GitHub Desktop.
Save arnabkd/63b7038eba10de6fbdac8a5b617d0352 to your computer and use it in GitHub Desktop.
name: CI
on: [push]
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install
uses: borales/actions-yarn@v2.0.0
with:
cmd: install # will run `yarn install` command
- name: lint
uses: borales/actions-yarn@v2.0.0
with:
cmd: tslint # will run `yarn tslint` command
- name: build
uses: borales/actions-yarn@v2.0.0
with:
cmd: build # will run `yarn build` command
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment