Skip to content

Commit

Permalink
Add GitHub Actions workflow to run yarn tooga on push
Browse files Browse the repository at this point in the history
  • Loading branch information
arnav-ag committed Mar 28, 2024
1 parent 7236d3c commit 65cfe6a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/tooga.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Run yarn tooga

on: [push]

jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: yarn install
- name: Run yarn tooga
run: yarn tooga

0 comments on commit 65cfe6a

Please sign in to comment.