Skip to content

Fix broken webpack:dev #5

Fix broken webpack:dev

Fix broken webpack:dev #5

Workflow file for this run

name: Build and test
on:
push:
branches: [ "ci-test" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 21.x]
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: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Build
run: npm run build
- name: Test
run: |
npm run test
- name: Coveralls
uses: coverallsapp/github-action@v2