Bump react-google-charts from 3.0.15 to 5.2.1 (#105) #59
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: Argos CI Screenshots | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
take-screenshots: | |
name: Take Screenshots and Upload to Argos | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Install dependencies | |
run: npm ci | |
- name: Install Playwright browsers | |
run: npx playwright install --with-deps chromium | |
- name: Build the website | |
run: npm run build | |
- name: Take screenshots with Playwright | |
run: npm run argos:screenshot | |
- name: Upload screenshots to Argos | |
run: npx argos upload ./screenshots |