Updated for smartc 2.2 #24
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: SmartC Tests | |
on: [ push ] | |
jobs: | |
build-smartc: | |
name: Test and Build SmartC | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 14 | |
- name: Run SmartC Tests | |
working-directory: ./ | |
run: | | |
npm ci | |
npm run build |