Skip to content
Snippets Groups Projects
Verified Commit 2a8da3c3 authored by Théo LUDWIG's avatar Théo LUDWIG
Browse files

ci: usage of GitHub Actions

parent beac8b37
Branches
Tags
No related merge requests found
Pipeline #204231 passed with stage
in 1 minute and 5 seconds
name: "ci"
on:
push:
branches: [develop]
pull_request:
branches: [main, develop, staging]
jobs:
ci:
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4.1.6"
- uses: "pnpm/action-setup@v4.0.0"
- name: "Setup Node.js"
uses: "actions/setup-node@v4.0.2"
with:
node-version: "20.x"
cache: "npm"
- run: "npm clean-install"
- run: "npm run expo:typed-routes"
- run: 'echo "${CI_COMMIT_MESSAGE}" | npm run lint:commit'
- run: "npm run lint:prettier"
- run: "npm run lint:eslint"
- run: "npm run lint:typescript"
- run: "npm run test"
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment