Updated trees #32
Workflow file for this run
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: Build project | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '20.x' | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install --immutable --immutable-cache --check-cache | |
- name: Install playwright for static server | |
run: yarn workspace @allurereport/static-server playwright install chromium | |
- name: Install playwright for e2e | |
run: yarn workspace @allurereport/e2e playwright install chromium | |
- name: Build project | |
run: yarn build | |
- name: Test Project | |
run: yarn test | |
- name: Lint Project | |
run: yarn eslint | |
- name: Generate report | |
run: yarn report | |
- name: Deploy to GitHub Pages | |
if: github.ref == 'refs/heads/main' | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./out/allure-report/awesome | |
publish_branch: gh-pages |