Skip to content
This repository has been archived by the owner on Oct 10, 2024. It is now read-only.

Initial JS bits

Initial JS bits #1

name: Build and Publish
on:
push:
branches: ["main"]
# We only deploy on tags and main branch
tags:
# Only run on tags that match the following regex
# This will match tags like v1.0.0, v1.0.1, etc.
- v[0-9]+.[0-9]+.[0-9]+
# Build on pull requests
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- name: Checkout
uses: actions/checkout@v4
# Set node version
- name: set node version
uses: actions/setup-node@v4
with:
node-version: 18
# Install Build stuff
- name: Install Dependencies
run: |
npm install
# Ruff
- name: ESlint check
run: |
./node_modules/.bin/eslint .