Skip to content

fix: minor rearranging of code #65

fix: minor rearranging of code

fix: minor rearranging of code #65

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
- staging
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup project
uses: ./.github/actions/setup-project
with:
DECRYPTION_SECRET: ${{ secrets.DECRYPTION_SECRET }}
- run: npm run eslint:quiet
prettier:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup project
uses: ./.github/actions/setup-project
with:
DECRYPTION_SECRET: ${{ secrets.DECRYPTION_SECRET }}
- run: npm run prettier:check