Skip to content

chore(deps-dev): bump eslint from 8.44.0 to 8.45.0 #1074

chore(deps-dev): bump eslint from 8.44.0 to 8.45.0

chore(deps-dev): bump eslint from 8.44.0 to 8.45.0 #1074

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: CI
on:
push:
branches: [main]
paths-ignore:
- '**/*.md'
- '**/*.yml'
- '**/*.yaml'
- .github/**
pull_request:
branches: [main]
paths-ignore:
- '**/*.md'
- '**/*.yml'
- '**/*.yaml'
- .github/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test
run: npm run test
env:
CI: true
release:
needs: build
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run semantic-release
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}