Skip to content

Commit

Permalink
chore: merge pull request #264 from camarm-dev/fix/linter
Browse files Browse the repository at this point in the history
🏷️ [Fix] Réparation de TOUS les types, et des erreur de lint
  • Loading branch information
Vexcited authored Oct 26, 2024
2 parents b2540dd + fa9493f commit 69e957d
Show file tree
Hide file tree
Showing 78 changed files with 667 additions and 636 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Checks
on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]

jobs:
eslint:
name: Typescript build & ESlint scanning
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Pnpm setup
uses: pnpm/action-setup@v2
with:
version: latest

- name: Environnement setup
run: pnpm install

- name: Typescript and Eslint scanning
run: pnpm lint
5 changes: 4 additions & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ module.exports = function (api) {
api.cache(true);

return {
presets: ["babel-preset-expo"]
presets: ["babel-preset-expo"],
plugins: [
"react-native-reanimated/plugin"
],
};
};
Loading

0 comments on commit 69e957d

Please sign in to comment.