Skip to content

Merge pull request #69 from microsoft/dependabot/npm_and_yarn/braces-… #13

Merge pull request #69 from microsoft/dependabot/npm_and_yarn/braces-…

Merge pull request #69 from microsoft/dependabot/npm_and_yarn/braces-… #13

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm run compile
- run: npm run test