nicer lint output. compat with lit SSR #78
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
# This workflow uses a `deno` binary along with `eslint` for code linting, and (optional) testing. | |
# If your tests *don't* require pkgs or non-repo files from your docker build image, | |
# then you can use this nicely for testing files in your repo like 'test/something.test.js' | |
# along with a full code coverage report. | |
name: CICD | |
on: push | |
jobs: | |
cicd: | |
runs-on: ubuntu-latest | |
permissions: { contents: read, packages: write, id-token: write } | |
steps: | |
- uses: internetarchive/cicd@v1 | |
with: | |
BASE_DOMAIN: 'dev.archive.org' | |
NOMAD_TOKEN: ${{ secrets.NOMAD_TOKEN }} | |
NOMAD_TOKEN_PROD: ${{ secrets.NOMAD_TOKEN_PROD }} | |
REGISTRY_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NOMAD_VAR_NO_DEPLOY: 'true' |