Skip to content

Merge pull request #55 from fluid-project/dependabot/npm_and_yarn/exp… #19

Merge pull request #55 from fluid-project/dependabot/npm_and_yarn/exp…

Merge pull request #55 from fluid-project/dependabot/npm_and_yarn/exp… #19

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
env:
HEADLESS: true
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install Node.js dependencies
run: npm install
- name: Node Tests
run: npm test
- name: Lint Code
run: npm run lint