APP-6153 pass checkout token (#5) #31
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
on: | |
push: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install | |
run: npm install | |
- name: lint | |
run: node_modules/.bin/eslint src | |
- name: confirm js artifact matches source | |
run: | | |
make -B dist/index.js | |
git diff --exit-code |