build(deps): bump the infra group with 17 updates (#145) #629
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
# Based on: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs | |
name: Angular CI | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
buildprep: | |
uses: rdamazio/efis-editor/.github/workflows/build-prep.yml@main | |
build: | |
runs-on: ubuntu-latest | |
needs: buildprep | |
steps: | |
- name: Fetch prepared artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: prepared-source | |
- name: Extract prepared artifacts | |
run: tar xf prepared-source.tar | |
- name: Build | |
run: npm run build --if-present | |
- name: Run tests | |
# Attempt to re-run in case there's flakiness. | |
run: npm run test:headless || npm run test:headless | |
lint: | |
runs-on: ubuntu-latest | |
needs: buildprep | |
steps: | |
- name: Fetch prepared artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: prepared-source | |
- name: Extract prepared artifacts | |
run: tar xf prepared-source.tar | |
- run: npm run format | |
- run: npm run lint | |
- uses: codespell-project/actions-codespell@406322ec52dd7b488e48c1c4b82e2a8b3a1bf630 # v2 | |
with: | |
path: src | |
- uses: marocchino/validate-dependabot@d8ae5c0d03dd75fbd0ad5f8ab4ba8101ebbd4b37 # v3 | |
id: validate |