This repository has been archived by the owner on Nov 5, 2024. It is now read-only.
chore(deps): bump @babel/core from 7.17.8 to 7.23.2 #583
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: CI | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: cspell-action | |
uses: streetsidesoftware/cspell-action@v1.3.6 | |
- name: Install dependencies | |
run: yarn --frozen-lockfile | |
- name: Run tests | |
run: yarn test | |
- name: Install Playwright | |
run: npx playwright install --with-deps | |
- name: Run your tests | |
run: yarn test:e2e | |
- name: Upload test results | |
if: always() | |
uses: actions/upload-artifact@v2 | |
with: | |
name: playwright-results | |
path: test-results |