Skip to content

chore(Onboarding): update text #450

chore(Onboarding): update text

chore(Onboarding): update text #450

Workflow file for this run

name: Commit Checks
on: [push]
jobs:
lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Use Node.js v20
uses: actions/setup-node@v3
with:
node-version: 20
- uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Install npm
run: |
npm i
- name: Install composer
run: |
php7.4 $(which composer) install
- name: Run lint
run: |
npm run lint