Bumped CCF-UI version to latest 3.x release for the organ-info pages #1914
Workflow file for this run
This file contains 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: 🌲🔧 Cypress Maintenance CI | |
on: | |
push: | |
branches: [main] | |
pull_request: {} | |
jobs: | |
build: | |
# Available versions: | |
# https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: "recursive" | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version-file: ".python-version" | |
architecture: "x64" | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: ".nvmrc" | |
cache: "npm" | |
cache-dependency-path: | | |
context/package-lock.json | |
end-to-end/package-lock.json | |
- run: npm --version | |
- name: Install maintenance build node dependencies | |
run: npm ci --prefix context | |
- name: Install cypress node dependencies | |
run: npm ci --prefix end-to-end | |
- name: Set up git config to make dev-start.sh happy | |
run: git config --global submodule.recurse true | |
- name: Run test script | |
run: etc/test/test-cypress.sh maintenance | |
env: | |
GH_ACTIONS_BRANCH: ${{ github.ref }} | |
GH_ACTIONS: true |