Correcting elasticsearch module issue #65
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: Push Workflow- Is it (F)ake?! app validation | |
on: | |
push: | |
branches: [main, master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20.11.1 | |
- run: npm ci && npm run build | |
working-directory: ./cake-game | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20.11.1 | |
- run: npm ci && npx playwright install --with-deps && npm run test-ct | |
working-directory: ./cake-game |