diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..a43226f --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +name: CI +on: push +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Use node 10 + uses: actions/setup-node@v1 + with: + node-version: '10.x' + - name: Install, link plugin locally, and test + run: | + yarn install + yarn link + yarn link lighthouse-plugin-field-performance + yarn test diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 166e51f..0000000 --- a/.travis.yml +++ /dev/null @@ -1,8 +0,0 @@ -language: node_js -addons: - chrome: stable -node_js: - - 10 -before_script: - - npm link - - npm link lighthouse-plugin-field-performance