Merge pull request #104 from techequitycollaborative/about-us-updates #194
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: Main workflow | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2.4.2 | |
- name: Use Node.js 16 | |
uses: actions/setup-node@v3.3.0 | |
with: | |
node-version: 16 | |
cache: 'npm' | |
- name: 🧰 Install dependencies | |
run: npm ci | |
- name: 📦 Build project | |
run: npm run build | |
- name: 🧹 Lint project | |
run: npm run lint | |
# - name: 🐛 Test project | |
# run: npm run test |