W-18562610 [Agent] Implement Agent Flags in Endpoint Summaries #81
This file contains hidden or 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: Tests and publishing | |
env: | |
FORCE_COLOR: 1 | |
on: | |
push: | |
branches: | |
- master | |
- main | |
- develop | |
pull_request: | |
branches: | |
- master | |
- main | |
jobs: | |
test_linux: | |
name: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-22.04] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- name: Install dependencies | |
run: | | |
npm install -g [email protected] | |
npm ci | |
- name: Install test dependencies | |
run: | | |
npm install -D [email protected] @playwright/[email protected] @web/[email protected] @web/[email protected] | |
npx playwright install --with-deps chromium firefox webkit | |
- name: Run tests | |
run: npx web-test-runner --config web-test-runner.config.cjs | |
test_win: | |
name: "Windows" | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- name: Install dependencies | |
run: | | |
npm install -g [email protected] | |
npm ci | |
- name: Install test dependencies | |
run: | | |
npm install -D [email protected] @playwright/[email protected] @web/[email protected] @web/[email protected] | |
npx playwright install --with-deps chromium firefox webkit | |
- name: Run tests | |
run: npx web-test-runner --config web-test-runner.config.cjs | |
tag: | |
name: "Publishing release" | |
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' | |
needs: | |
- test_linux | |
- test_win | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
registry-url: 'https://registry.npmjs.org' | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Read version from package.json | |
uses: culshaw/read-package-node-version-actions@v1 | |
id: package-node-version | |
- name: Changelog | |
uses: scottbrenner/generate-changelog-action@master | |
id: Changelog | |
- name: Github Release | |
id: create_release | |
uses: actions/create-release@latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: v${{ steps.package-node-version.outputs.version }} | |
release_name: v${{ steps.package-node-version.outputs.version }} | |
body: | | |
${{ steps.Changelog.outputs.changelog }} | |
draft: false | |
prerelease: false | |
- run: npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |