upgrade-iridium-client #4
Workflow file for this run
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: Build - every pull request | ||
on: | ||
pull_request: | ||
branches: [ "*" ] | ||
env: | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
packages: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: set up node 18 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18.x' | ||
- name: install node deps | ||
run: npm ci | ||
working-directory: ./iridium-angular-client | ||
- name: lint angular clients | ||
run: npm run lint | ||
working-directory: ./iridium-angular-client | ||
- name: build angular clients | ||
run: npm run build-all | ||
working-directory: ./iridium-angular-client | ||