Skip to content

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.17.0 to 8.9.0 #161

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.17.0 to 8.9.0

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.17.0 to 8.9.0 #161

name: Build And Test Pull Request
on:
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Build project
run: npm run build
- name: Check build status
run: |
if [ $? -eq 0 ]; then
echo "Build successful"
exit 0
else
echo "Build failed"
exit 1
fi