Skip to content

Merge pull request #65 from strapi/feat/automation-multi-env-deploy #141

Merge pull request #65 from strapi/feat/automation-multi-env-deploy

Merge pull request #65 from strapi/feat/automation-multi-env-deploy #141

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- develop
pull_request:
branches:
- main
- develop
jobs:
lint:
name: 'lint'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10.18.1
- uses: actions/setup-node@v4
with:
node-version: 22
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Run linting
run: pnpm run lint
- name: Run Typescript checks
run: pnpm run check-types