Merge pull request #165 from mahmutisci/main #71
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: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 19.4 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 19.4 | |
- run: npm install | |
- run: make build | |
- run: make build-demo | |
- run: make lint | |
- run: make test-no-es6-browser-globals | |
- run: make mock-test | |
- run: make format |