Merge pull request #606 from jvalue/587-vscode-run-pipeline-action #1787
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
# SPDX-FileCopyrightText: 2023 Friedrich-Alexander-Universitat Erlangen-Nurnberg | |
# | |
# SPDX-License-Identifier: AGPL-3.0-only | |
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
ci: | |
name: CI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: REUSE Compliance Check | |
uses: fsfe/reuse-action@v1 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 'lts/*' | |
- name: Install dependencies | |
run: npm ci | |
- uses: nrwl/nx-set-shas@v3 | |
- name: Langium generate | |
run: npm run generate | |
- name: Build | |
run: npx nx affected --target=build --verbose --parallel=1 --configuration=prod | |
- name: Lint | |
run: npx nx affected --target=lint --verbose --parallel=1 --maxWarnings=0 | |
- name: Test | |
run: npx nx affected --target=test --verbose --parallel=1 --base=remotes/origin/main --head=HEAD --ci | |
# Ensure this works for future release publishing | |
- name: Publish Dry-Run | |
run: npx nx affected --target=pre-publish --verbose --parallel=1 --base=remotes/origin/main --head=HEAD --ci | |
# Ensure this works for future release publishing | |
- name: Pack VSCode Extension | |
run: npx nx run vs-code-extension:pack:prod |