Skip to content

version bump 3.1.1-alpha.1 to 3.1.1-alpha.2 #753

version bump 3.1.1-alpha.1 to 3.1.1-alpha.2

version bump 3.1.1-alpha.1 to 3.1.1-alpha.2 #753

name: Build and Test Library
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, and build
run: |
npm ci
npm run build
env:
CI: true
test:
runs-on: ubuntu-latest
needs: [build]
strategy:
matrix:
node-version: [22.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Unit tests
run: npm run test:unit
- name: E2E tests
run: npm run test:e2e:headless
- name: LINTing
run: npm run lint