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
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: 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 |