Java V2 Fixed a ticket and added ListBuckets example (#6010) #31
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: JavaScript | |
on: | |
push: | |
paths: | |
- "javascriptv3/**" | |
branches: | |
- main | |
pull_request: | |
paths: | |
- "javascriptv3/**" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
name: Checkout files | |
- name: Get changed files | |
id: changed-files | |
uses: tj-actions/changed-files@v41 | |
with: | |
files: "javascriptv3/**/*.{js,ts,jsx,tsx}" | |
- name: Setup NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "20.x" | |
- run: npm i --prefix javascriptv3 | |
name: Install dependencies | |
- run: | | |
changed_files=(${{steps.changed-files.outputs.all_changed_files}}) | |
npm run --prefix javascriptv3 ci-lint -- ${changed_files[@]//javascriptv3\/} | |
name: Lint added and modified files |