Skip to content

1.3.3

1.3.3 #160

Workflow file for this run

name: Build
on:
push:
paths-ignore:
- vot-cli/*
pull_request:
paths-ignore:
- vot-cli/*
release:
paths-ignore:
- vot-cli/*
workflow_dispatch:
paths-ignore:
- vot-cli/*
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 19.x]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }} 🛎️
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Check Version 🛎️
shell: bash
run: node --version && npm --version
- name: Install 🔧
shell: bash
run: npm install
- name: Build 🔧
run: npm run build
- name: Upload Artifact 🚀
uses: actions/upload-artifact@v3
with:
path: dist/vot*.user.js