Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dependencies #40

Merged
merged 3 commits into from
Oct 16, 2023
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
12 changes: 6 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [14.x, 16.x]
node: [16.x, 18.x]
os: [ubuntu-latest, windows-latest]

steps:
Expand Down Expand Up @@ -56,30 +56,30 @@ jobs:

- name: Run Coveralls
uses: coverallsapp/github-action@master
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.node, '14')
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.node, '18')
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'

- name: 'BrowserStack Env Setup'
uses: browserstack/github-actions/setup-env@master
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.node, '14')
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.node, '18')
with:
username: ${{ secrets.BROWSERSTACK_USERNAME }}
access-key: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}

- name: 'BrowserStack Local Tunnel Setup'
uses: browserstack/github-actions/setup-local@master
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.node, '14')
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.node, '18')
with:
local-testing: start
local-identifier: random

- name: 'Running test on BrowserStack'
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.node, '14')
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.node, '18')
run: npx browserstack-runner

- name: 'BrowserStackLocal Stop'
uses: browserstack/github-actions/setup-local@master
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.node, '14')
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.node, '18')
with:
local-testing: stop
2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const process = require('process');
const process = require('node:process');

const {NODE_ENV} = process.env;

Expand Down
Loading
Loading