change trap #2590
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: GitHub Actions | |
on: | |
push: | |
branches: [dev, sandbox] | |
pull_request: | |
branches: [dev, sandbox] | |
jobs: | |
start-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "TEST PROJECT" | |
- uses: actions/checkout@v2 | |
- run: docker compose version | |
- run: npm i | |
- run: npm run test |