Skip to content

Merge branch 'main' into renovate/actions-checkout-7.x #1015

Merge branch 'main' into renovate/actions-checkout-7.x

Merge branch 'main' into renovate/actions-checkout-7.x #1015

Workflow file for this run

name: check_pr
'on':
push:
branches-ignore:
- main
workflow_dispatch: {}
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
version: [20, 22, 24]
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Set Timezone
uses: MathRobin/timezone-action@v1.1
with:
timezoneLinux: Europe/Paris
- name: Setup Node version
uses: actions/setup-node@v7
with:
node-version: ${{ matrix.version }}
- name: System info
run: |
echo "node"
node -v
echo "npm"
npm -v
echo "yarn"
yarn -v
echo "yarn enableImmutableInstalls"
yarn config get enableImmutableInstalls
- name: Allow modify yarn.lock
run: yarn config set -H enableImmutableInstalls false
- name: Install modules
run: yarn install
- name: Run lint tasks
run: |
yarn lint
yarn prettier
- name: Run test
run: yarn test