Skip to content

Build(deps-dev): bump fast-uri from 3.1.0 to 3.1.2 #83

Build(deps-dev): bump fast-uri from 3.1.0 to 3.1.2

Build(deps-dev): bump fast-uri from 3.1.0 to 3.1.2 #83

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Install Chrome
run: |
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" | sudo tee /etc/apt/sources.list.d/google-chrome.list
sudo apt-get update
sudo apt-get install -y google-chrome-stable
- name: Run tests
run: npm test
env:
# Disable Sauce Labs - they don't have a free tier anymore...
SAUCE_USERNAME: ""
SAUCE_ACCESS_KEY: ""