MOBILE-3947 core: Stop using deprecated guard interfaces #404
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: Update Behat plugin | |
on: ['push'] | |
jobs: | |
update: | |
if: github.repository == 'moodlehq/moodleapp' || github.repository == 'moodlemobile/moodleapp' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- name: Install npm packages | |
run: npm ci --no-audit | |
- name: Update Behat plugin | |
env: | |
GIT_TOKEN: ${{ secrets.GIT_TOKEN }} | |
BEHAT_PLUGIN_GITHUB_REPOSITORY: ${{ secrets.BEHAT_PLUGIN_GITHUB_REPOSITORY }} | |
BEHAT_PLUGIN_BRANCH: ${{ secrets.BEHAT_PLUGIN_BRANCH }} | |
BEHAT_PLUGIN_EXCLUDE_FEATURES: ${{ secrets.BEHAT_PLUGIN_EXCLUDE_FEATURES }} | |
run: ./.github/scripts/update_behat_plugin.sh |