1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
easylogon-demo/.github/workflows/pr.yml
T
xfox111 5f34431b5a Pipelines fixes & community documentation (#2)
* - Removed scenario test overrides

* Fixed localization check issue

* Added CI/CD configs

* Updated README

* Added yarn install to CI/CD configs

* Update ci.yml

* Updated CI config to attach built bundle to release

* Added templates and documents to comply with GitHub Community Standards

* Updated CI.yml
2022-05-20 15:44:43 +03:00

27 lines
515 B
YAML

name: 'PR validation pipeline'
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: 'Use Node.js 16.x'
uses: actions/setup-node@v3
with:
node-version: '16.x'
cache: 'yarn'
- run: yarn install
- run: yarn build
- name: 'Drop artifacts'
uses: actions/upload-artifact@v3.0.0
with:
name: 'Build'
path: 'build'