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

[Sweep GHA Fix] Fix failing GitHub Actions #15

[Sweep GHA Fix] Fix failing GitHub Actions

[Sweep GHA Fix] Fix failing GitHub Actions #15

Workflow file for this run

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