Skip to content

Prepare v0.6.0 release #1784

Prepare v0.6.0 release

Prepare v0.6.0 release #1784

Workflow file for this run

name: CI
on:
push: ~
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- run: corepack enable
- uses: actions/setup-node@v3
with:
node-version: 18.20.0
cache: yarn
- run: yarn install --immutable
- run: yarn lint
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- run: corepack enable
- uses: actions/setup-node@v3
with:
node-version: 18.20.0
cache: yarn
- run: yarn install --immutable
- run: yarn build
test-utils:
strategy:
matrix:
node-version: [18.20.0, 20.12.0]
runs-on: ubuntu-22.04
steps:
- run: sudo apt update && sudo apt install ansible
- uses: actions/checkout@v3
- run: corepack enable
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn install --immutable
- run: yarn test:utils
test-generators:
strategy:
matrix:
shard: [1/3, 2/3, 3/3]
runs-on: ubuntu-22.04
steps:
- uses: azure/setup-helm@v1
with:
version: 3.8.0
- uses: hashicorp/setup-terraform@v1
with:
terraform_version: 1.1.2
- run: git config --global init.defaultBranch main
- uses: actions/checkout@v3
- run: corepack enable
- uses: actions/setup-node@v3
with:
node-version: 18.20.0
cache: yarn
- run: yarn install --immutable
- run: yarn test:generators --shard=${{ matrix.shard }}
test-update-scripts:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- run: corepack enable
- uses: actions/setup-node@v4.0.3
with:
node-version: 20.12.0
cache: yarn
- run: yarn install --immutable
- name: Update Node version
run: ./scripts/updateNode.mjs
- name: Update PHP version
run: ./scripts/updatePHP.mjs