Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
GavinLin512 committed Dec 27, 2024
2 parents 748004b + 850c6ad commit 25f3ebc
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/argos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Argos CI

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
visual-tests:
runs-on: ubuntu-latest

steps:
- name: Check out repository
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Install dependencies
run: npm install

- name: Run visual tests
run: npm run test:visual

- name: Upload screenshots to Argos CI
env:
ARGOS_TOKEN: ${{ secrets.ARGOS_TOKEN }}
run: npx argos upload

0 comments on commit 25f3ebc

Please # to comment.