Skip to content

Merge pull request #172 from mjbvz/dev/mjbvz/update-pasted-links #273

Merge pull request #172 from mjbvz/dev/mjbvz/update-pasted-links

Merge pull request #172 from mjbvz/dev/mjbvz/update-pasted-links #273

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
node-version: [16.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm run compile
- run: npm run lint
- run: npm test