Skip to content

Merge pull request #72 from retailnext/remove-sourcemap-validation #10

Merge pull request #72 from retailnext/remove-sourcemap-validation

Merge pull request #72 from retailnext/remove-sourcemap-validation #10

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request: {}
concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
test:
name: "Tests"
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 10.x, 12.x, 14.x, 16.x, 18.x ]
steps:
- uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run Tests
run: yarn run test