This repository has been archived by the owner on May 18, 2024. It is now read-only.
Update FUNDING.yml #169
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: build | |
on: [push, pull_request] | |
jobs: | |
Ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
- name: Install Dependencies | |
run: npm install | |
- name: Compile Program | |
run: npm run build | |
- name: Test Program | |
run: npm run test |