Skip to content

Bump webpack from 5.55.1 to 5.104.1 #14

Bump webpack from 5.55.1 to 5.104.1

Bump webpack from 5.55.1 to 5.104.1 #14

Workflow file for this run

name: Integration Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
job:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
node: ['14', '16']
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install npm@7
run: npm i -g npm@7
- name: Install packages
run: npm ci --prefer-offline
- name: Run integration tests
run: npm run test:integration