diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml new file mode 100644 index 00000000..7a04b16d --- /dev/null +++ b/.github/workflows/CI.yml @@ -0,0 +1,19 @@ +name: CI + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - run: yarn install --immutable + - run: yarn prettier:check + - run: yarn build:all + - run: yarn lint:all + - run: yarn test:all diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 344c0b93..00000000 --- a/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -language: node_js -node_js: - - 'stable' -script: - - yarn prettier:check - - yarn build:all - - yarn lint:all - - yarn test:all