feat: sync files on one S3 bucket to another bucket #1
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: Linting | |
on: [pull_request] | |
jobs: | |
lint: | |
if: "!contains(github.event.pull_request.title, 'WIP!')" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Run Eslint | |
run: npm run lint |