chore(deps): update dependency mocha to v11.7.2 #268
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ✔️ Tests E2E | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.workflow }}-${{ github.ref_name }} | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
e2e-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.24' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 24 | |
cache: 'yarn' | |
- name: Set up Docker | |
uses: docker/setup-buildx-action@v3 | |
- name: Install Helm | |
uses: azure/setup-helm@v4 | |
with: | |
version: v3.17.2 | |
- name: Install Kind | |
uses: devthefuture-org/kind-with-registry-action@main | |
with: | |
kind_version: v0.27.0 | |
kubectl_version: v1.32.2 | |
ingress_enabled: false | |
registry_image: registry:2 | |
node_image: kindest/node:v1.32.2 | |
- name: Run E2E tests | |
shell: bash | |
# env: | |
run: | | |
set -eo errexit | |
export KUBECONFIG="${HOME}/.kube/config" | |
yarn | |
./tests/install-crossplane.sh | |
./tests/e2e.sh |