Skip to content

CI

CI #66

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
env:
CI: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: build
uses: actions/setup-node@master
with:
node-version: ${{ matrix.node-version }}
- name: npm install and build
run: |
npm i
npm run build --if-present
env:
CI: true