Merge pull request #88 from massalabs/update-version-minor #210
Workflow file for this run
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: Formater and linter | |
on: | |
[push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Use Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Clean install | |
run: npm ci | |
- name: Checks format and lint | |
run: npm run fmt:check | |
- name: Build package | |
run: npm run build | |