Skip to content

Merge pull request #288 from salesforce/wjh/fix-ts-ignores #112

Merge pull request #288 from salesforce/wjh/fix-ts-ignores

Merge pull request #288 from salesforce/wjh/fix-ts-ignores #112

Workflow file for this run

name: Actions-CI
on:
push:
branches: [master, v5]
pull_request:
branches: [master, v5]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [latest, lts/*, lts/-1]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies and test
run: npm install
- run: npm test
- run: npm run eslint
- run: npm run prettier