Skip to content

Merge pull request #61 from ChrisMBarr/dependabot/npm_and_yarn/typesc… #178

Merge pull request #61 from ChrisMBarr/dependabot/npm_and_yarn/typesc…

Merge pull request #61 from ChrisMBarr/dependabot/npm_and_yarn/typesc… #178

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- README.md
- .gitignore
- .github/**
- .vscode/**
- .cspell.json
pull_request:
branches:
- main
permissions:
contents: write
jobs:
build-and-test:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Checkout ⏬
uses: actions/checkout@v4
- name: Install 📦
run: |
npm ci
- name: Lint 👍🏼
run: |
npm run lint
- name: Test 🧪
run: |
npm run test:coverage
- name: Build Main ⚒️
run: |
npm run build:main
- name: Build Module 🛠️
run: |
npm run build:module