Skip to content

v1.1.1

v1.1.1 #105

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install and Build
run: |
npm install
npm run build
- name: Test
run: npm test
- name: Webpack Bundle
run: npm run bundle:tmp
- name: Upload code coverage
uses: codecov/codecov-action@v2