Skip to content
This repository was archived by the owner on Jan 25, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: build

on: [push, pull_request]

env:
FORCE_COLOR: 3

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
- run: yarn --frozen-lockfile
# - run: yarn prettier-check
- run: yarn tslint
- run: yarn typecheck
- run: yarn build
- run: yarn cover
- run: yarn nyc report --reporter json
- run: 'bash <(curl -s https://codecov.io/bash)'
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.