Skip to content

chore(dev-deps): bump @semantic-release/github from 10.1.0 to 10.3.3 #221

chore(dev-deps): bump @semantic-release/github from 10.1.0 to 10.3.3

chore(dev-deps): bump @semantic-release/github from 10.1.0 to 10.3.3 #221

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- 'main'
workflow_dispatch:
env:
CI: true
jobs:
build-and-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
- name: NPM Install
run: npm ci
- name: NPM Lint
run: npm run lint
- name: NPM Build
run: npm run build --if-present
- name: NPM Test
run: npm run test