Skip to content

Bump axios from 1.3.4 to 1.7.1 #822

Bump axios from 1.3.4 to 1.7.1

Bump axios from 1.3.4 to 1.7.1 #822

Workflow file for this run

name: Twitch.Js Test
on: [push,pull_request]
jobs:
tester:
runs-on: ubuntu-latest
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
strategy:
matrix:
node-version: [12, 14, 16, 18]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
- name: Build Project
run: npm run pdeploy
- name: Run tests
run: npm test
env:
TOKEN: ${{ secrets.TOKEN }}