Skip to content

fix(tag-and-deploy-lambda): Check if this is the same tag before pushing #260

fix(tag-and-deploy-lambda): Check if this is the same tag before pushing

fix(tag-and-deploy-lambda): Check if this is the same tag before pushing #260

Workflow file for this run

name: Codestyle
on: [pull_request]
jobs:
prettier:
name: Run Prettier on codebase
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'yarn'
- name: Install Dependencies
run: |
yarn --immutable
- name: Run Prettier
run: |
yarn prettier
eslint:
name: Run ESLint on codebase
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@master
- uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'yarn'
- name: Install Dependencies
run: |
yarn --immutable
- name: Run ESLint
run: |
yarn eslint