Skip to content

chore: 🤖 bump eslint-config-prettier from 8.10.0 to 9.0.0 #19

chore: 🤖 bump eslint-config-prettier from 8.10.0 to 9.0.0

chore: 🤖 bump eslint-config-prettier from 8.10.0 to 9.0.0 #19

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Checks
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
paths:
- 'src'
- 'package.json'
- 'package-lock.json'
- 'rollup.config.js'
- 'tsconfig.json'
- '.npmrc'
- 'README.md'
- 'api'
- '.github'
pull_request:
branches: [ "main" ]
types: [opened, synchronize] # Workflow triggering events
paths:
- 'src'
- 'package.json'
- 'package-lock.json'
- 'rollup.config.js'
- 'tsconfig.json'
- '.npmrc'
- 'README.md'
- 'api'
- '.github'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "check"
check:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0 # Checkout all branches and tags
- name: Setup Node.js environment
uses: actions/setup-node@v2.5.2
with:
node-version: 18
- name: Install dependencies
run: | # Install and link dependencies
npm i
- name: Build # Build all packages
run: npm run build
notify:
name: Notify failed check
needs: check
if: failure() && github.event.pull_request == null
runs-on: ubuntu-latest
steps:
- uses: jayqi/failed-build-issue-action@v1
with:
github-token: ${{ secrets.GH_TOKEN }}