fix: Remove user from autocomplete fields if (swapped) user model doe… #449
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: gulp | |
on: [push] | |
jobs: | |
gulp: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
node-version: [16.20.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: python -m pip install -r tests/requirements/frontend.txt | |
- run: npm install | |
- run: npm install -g [email protected] | |
- run: gulp ci |