Skip to content

chore(deps-dev): bump eslint-plugin-import from 2.29.1 to 2.30.0 #149

chore(deps-dev): bump eslint-plugin-import from 2.29.1 to 2.30.0

chore(deps-dev): bump eslint-plugin-import from 2.29.1 to 2.30.0 #149

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