Update admin credentials to demonstrate best practices for nested mod… #333
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: Test | |
on: | |
pull_request: | |
push: | |
branches: [ main, release/* ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Ruby and install gems | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
- run: yarn install | |
- name: Run setup | |
run: | | |
bin/setup | |
- name: Run default rake task | |
run: | | |
bundle exec rake |