Merge pull request #2747 from Start9Labs/chore/remove-mastodon-from-r… #925
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: Automated Tests | |
on: | |
push: | |
branches: | |
- master | |
- next/* | |
pull_request: | |
branches: | |
- master | |
- next/* | |
env: | |
NODEJS_VERSION: "18.15.0" | |
ENVIRONMENT: dev-unstable | |
jobs: | |
test: | |
name: Run Automated Tests | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODEJS_VERSION }} | |
- name: Build And Run Tests | |
run: make test |