Skip to content

Commit

Permalink
Merge branch 'master' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
janechu authored Dec 4, 2024
2 parents 06c57c5 + a894cf9 commit eb7dfbf
Show file tree
Hide file tree
Showing 8 changed files with 99 additions and 80 deletions.
65 changes: 0 additions & 65 deletions .github/workflows/ci-validate-codeql.yml

This file was deleted.

4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ We hope you're excited by the possibilities that FAST presents. But, you may be
* "I want to look at a quick reference."
* [Jump to the Cheat Sheet](https://fast.design/docs/resources/cheat-sheet)

## Roadmap

Major features for the FAST project can be found in the [roadmap](https://github.com/orgs/microsoft/projects/240/views/1).

## Joining the Community

Looking to get answers to questions or engage with us in realtime? Our community is most active [on Discord](https://discord.gg/FcSNfg4). Submit requests and issues on [GitHub](https://github.com/Microsoft/fast/issues/new/choose), or join us by contributing on [some good first issues via GitHub](https://github.com/Microsoft/fast/labels/community:good-first-issue).
Expand Down
66 changes: 66 additions & 0 deletions azure-pipelines-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
pr:
- master

# The `resources` specify the location and version of the 1ES PT.
resources:
repositories:
- repository: 1esPipelines
type: git
name: 1ESPipelineTemplates/1ESPipelineTemplates
ref: refs/tags/release

extends:
# The pipeline extends the 1ES PT which will inject different SDL and compliance tasks.
# For non-production pipelines, use "Unofficial" as defined below.
# For productions pipelines, use "Official".
template: v1/1ES.Official.PipelineTemplate.yml@1esPipelines
parameters:
# Update the pool with your team's 1ES hosted pool.
pool:
name: OneESPool # Name of your hosted pool
image: HostedPoolLinuxImage # Name of the image in your pool. If not specified, first image of the pool is used
os: linux # OS of the image. This value cannot be a variable. Allowed values: windows, linux, macOS
sdl:
sourceAnalysisPool:
name: OneESPool # Name of your hosted pool
image: HostedPoolWindowsImage # Name of the image in your pool. If not specified, first image of the pool is used
os: windows # OS of the image. Allowed values: windows, linux, macOS
stages:
- stage: Stage
jobs:
- job: HostJob
# If the pipeline publishes artifacts, use `templateContext` to define the artifacts.
# This will enable 1ES PT to run SDL analysis tools on the artifacts and then upload them.
templateContext:
outputs:
- output: pipelineArtifact
targetPath: $(System.ArtifactsDirectory)
artifactName: drop

variables:
npm_config_cache: $(Pipeline.Workspace)/.npm

steps:
- checkout: self
persistCredentials: "true"

- task: UseNode@1
inputs:
version: "20.x"
displayName: "Install Node.js"

- task: Cache@2
inputs:
key: 'npm | "$(Agent.OS)" | package-lock.json'
restoreKeys: |
npm | "$(Agent.OS)"
path: $(npm_config_cache)
displayName: "Cache npm"

- script: |
npm ci
displayName: "Install package dependencies"
- script: |
npm run build
displayName: "Build workspaces"
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "none",
"comment": "Update playwright image and dependency to latest",
"packageName": "@microsoft/fast-ssr",
"email": "[email protected]",
"dependentChangeType": "none"
}
28 changes: 16 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/web-components/fast-ssr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@
"@microsoft/fast-element": "^2.0.0"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.47.0",
"@microsoft/fast-element": "^2.0.0",
"@microsoft/fast-foundation": "^3.0.0-alpha.33",
"@microsoft/api-extractor": "^7.47.0",
"@playwright/test": "^1.41.2",
"@playwright/test": "^1.49.0",
"@types/express": "^4.17.21",
"@types/node": "^17.0.17",
"express": "^4.19.2",
Expand Down
3 changes: 3 additions & 0 deletions sites/website/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ This website is built using [Docusaurus](https://docusaurus.io/), a modern stati

## Installation

Run the following commands in the **root directory**:

```sh
npm ci
npm run build
```

## Local Development
Expand Down
2 changes: 1 addition & 1 deletion sites/website/src/docs/getting-started/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@ Now that the "hello-world" custom web component has been defined, it can be incl

It's as simple as that!

Continue reading through the docs to understand all of the potential ways to use `@microsoft/fast-element` for your website or application.
Continue reading through the docs to understand all of the potential ways to use `@microsoft/fast-element` for your website or application.

0 comments on commit eb7dfbf

Please sign in to comment.