add s3 bucket for static files, implement in network compose and k8s #78
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Linting | |
on: | |
push: | |
branches: | |
- 'feature/**' | |
- 'main' | |
jobs: | |
eslint-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Packages | |
run: npm install | |
- name: Run Eslint | |
run: npm run lint | |