Skip to content

Bump webpack from 5.82.1 to 5.83.1 #751

Bump webpack from 5.82.1 to 5.83.1

Bump webpack from 5.82.1 to 5.83.1 #751

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CI: true
TZ: 'Europe/Paris'
NODE_ENV: 'test'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: checkout
uses: actions/checkout@v3
- name: use node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: install
run: yarn install
- name: lint
run: yarn lint
- name: test
run: yarn test