Skip to content

Commit

Permalink
chore(deps): Bump dependencies
Browse files Browse the repository at this point in the history
Support of keys & values other than strings and Buffers has been dropped.
  • Loading branch information
jkroepke committed Nov 6, 2020
1 parent 480fec9 commit c19d290
Show file tree
Hide file tree
Showing 5 changed files with 39,030 additions and 15,186 deletions.
9 changes: 9 additions & 0 deletions .airtap.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
providers:
- airtap-sauce
- airtap-default

browsers:
- name: chrome
version: latest
Expand All @@ -9,3 +13,8 @@ browsers:
version: latest
- name: android
version: '6.0'

presets:
local:
browsers:
- name: default
21 changes: 14 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
---
name: CI

env:
NPM_CONFIG_REGISTRY: https://registry.npmjs.org:8443/

on:
pull_request:
push:
Expand All @@ -22,14 +25,17 @@ jobs:
- name: build
run: npm run build

- uses: saucelabs/sauce-connect-action@master
with:
username: ${{ secrets.SAUCE_USERNAME }}
accessKey: ${{ secrets.SAUCE_ACCESS_KEY }}
tunnelIdentifier: github-action-tunnel
- name: Add loopback host
run: echo "127.0.0.1 airtap.local" | sudo tee -a /etc/hosts

- name: unit test
run: npm run test

- name: integration test (node)
run: npm run test:integ-node

- name: test
run: npm run test:ci
- name: integration test (browser)
run: npm run test:integ-browser
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
Expand All @@ -42,6 +48,7 @@ jobs:
deploy:
runs-on: ubuntu-latest
needs: [tests]
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v2
with:
Expand Down

0 comments on commit c19d290

Please sign in to comment.