Skip to content

ENH - Add Playwright for automated testing #111

ENH - Add Playwright for automated testing

ENH - Add Playwright for automated testing #111

Workflow file for this run

name: Build
on:
pull_request:
branches:
- '*'
push:
branches:
- main
workflow_call:
jobs:
build:
name: "Build Package"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Install dependencies
run: yarn
- name: Lint code
run: yarn eslint:check
- name: Build application
run: yarn run build
- name: Build application artifacts
run: yarn run webpack bundle
- uses: actions/upload-artifact@v3
with:
name: webpack-bundle
path: dist/