Files
languageservices/.github/workflows/buildtest.yml
T
Christopher Schleiden b93768a499 Undo matrix change
2022-11-09 15:00:57 -08:00

26 lines
494 B
YAML

name: Build & Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
cache: 'npm'
registry-url: 'https://npm.pkg.github.com'
- run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: npm run build -ws
- run: npm test -ws