Skip to content
This repository was archived by the owner on Nov 25, 2021. It is now read-only.
Merged
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
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: build

on: [push, pull_request]

env:
FORCE_COLOR: 3

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '14.7.0'
- run: yarn --frozen-lockfile
- run: yarn prettier-check
- run: yarn typecheck
- run: yarn eslint
- run: yarn build
- run: yarn arn test -- --single-run --browsers ChromeHeadlessNoSandbox
- run: 'bash <(curl -s https://codecov.io/bash)'
- name: release
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
run: yarn run semantic-release
31 changes: 0 additions & 31 deletions .travis.yml

This file was deleted.