Bump inquirer from 8.2.4 to 9.2.11 #1393
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: OpenWisp WiFi Login Pages CI BUILD | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
qa-checks: | |
name: QA-Checks | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Cache yarn | |
uses: actions/cache@v2 | |
id: yarn-cache | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: ${{ runner.os }}-yarn- | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Installing dependencies | |
run: | | |
yarn install | |
pip install openwisp-utils[qa] | |
- name: QA checks | |
run: ./run-qa-checks | |
build: | |
name: Tests and Coverage | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Get yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn cache dir)" | |
- name: Cache yarn | |
uses: actions/cache@v2 | |
id: yarn-cache | |
with: | |
path: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: ${{ runner.os }}-yarn- | |
- name: Installing dependencies | |
run: | | |
yarn install | |
yarn setup | |
- name: Tests | |
run: yarn coverage | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Get openwisp-radius | |
run: | | |
curl -L https://github.com/openwisp/openwisp-radius/tarball/master -o openwisp-radius.tar.gz | |
tar -xvzf openwisp-radius.tar.gz && mkdir openwisp-radius | |
mv openwisp-*/* openwisp-radius | |
- name: Cache python environment | |
uses: actions/cache@v2 | |
with: | |
path: ${{ env.pythonLocation }} | |
key: ${{ env.pythonLocation }}-${{secrets.CACHE_VERSION}}-${{ hashFiles('openwisp-radius/setup.py') }} | |
- name: Installing OpenWISP Radius | |
run: | | |
cd openwisp-radius && pip install -U -e ".[saml]" "Django~=4.2.0" | |
./tests/manage.py migrate | |
- name: Creating configuration of organization (supports mobile verification) | |
run: node browser-test/create-mobile-configuration.js | |
- name: Build OpenWISP WiFi Login Pages | |
run: | | |
export NODE_OPTIONS=--openssl-legacy-provider | |
yarn setup | |
webpack --mode development --progress --config config/webpack.config.js | |
- name: Running OpenWISP WiFi Login Pages | |
run: | | |
export NODE_OPTIONS=--openssl-legacy-provider | |
yarn start & | |
- name: Running OpenWISP Radius | |
run: cd openwisp-radius && ./tests/manage.py runserver & | |
- name: geckodriver/firefox | |
run: | | |
echo "geckodriver/firefox" | |
which geckodriver | |
geckodriver --version | |
which firefox | |
firefox --version | |
- name: Browser Tests | |
run: | | |
export OPENWISP_RADIUS_PATH=$(pwd)/openwisp-radius | |
yarn browser-test | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |