Improved HomePageCards. #27
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: Assembler CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
analyze: | |
name: Code CI workflow pipeline | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Setup NodeJS | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 20 | |
- name: Install Dependencies | |
run: cd assembler && npm install | |
- name: Unit Testing | |
run: cd assembler && npm test | |
- name: Build Application | |
run: cd assembler && npm run build |