ci: fix ci yaml syntax #210
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: | ||
ci: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: package.json | ||
cache: npm | ||
- run: make dependencies | ||
- run: make verify | ||
- run: make test | ||
env: | ||
- JOBS: 1 # See https://git.io/vdao3 for details | ||
- run: make package-chrome | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: chrome-extension | ||
path: dist-packages/chrome.zip |