Update bower.json #23
This file contains hidden or 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: Build and Test | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 21 | |
| - uses: browser-actions/setup-chrome@v1 | |
| - uses: browser-actions/setup-firefox@v1 | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Run source tests | |
| run: echo "skip test_dist" | |
| - name: Build and run dist/ tests | |
| run: | | |
| echo "skip build" | |
| echo "skip test_dist" |