Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
feat/fix: Update GitHub Actions workflow configura
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Jan 16, 2024
1 parent 659c715 commit 1fb346e
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: GitHub Actions

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

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 14

- name: Install dependencies
run: npm ci

- name: Verifying user's organization
run: echo "Verifying user's organization..."

# Add any additional steps or configurations as needed

- name: Build and test
run: npm run build && npm test

0 comments on commit 1fb346e

Please sign in to comment.