Skip to content

Bump @babel/traverse from 7.19.4 to 7.23.2 in /ops/stack/redshift_stack #264

Bump @babel/traverse from 7.19.4 to 7.23.2 in /ops/stack/redshift_stack

Bump @babel/traverse from 7.19.4 to 7.23.2 in /ops/stack/redshift_stack #264

Workflow file for this run

---
name: Pull Request
on:
push:
branches:
- master
pull_request:
env:
PYTHON_VERSION: '3.9'
jobs:
linting:
name: Lint files
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Setup pre-commit cache
uses: actions/cache@v3
with:
path: |
~/.cache/pre-commit
key: ${{ runner.os }}-${{ env.PYTHON_VERSION }}-pre-commit-${{ hashFiles('**/.pre-commit-config.yaml*') }}
restore-keys: |
${{ runner.os }}-${{ env.PYTHON_VERSION }}-pre-commit-
- name: Create environment
run: |
pip install pre-commit
pre-commit run --all-files