Skip to content

Merge pull request #74 from gynzy/hidden-sourcemaps #11

Merge pull request #74 from gynzy/hidden-sourcemaps

Merge pull request #74 from gynzy/hidden-sourcemaps #11

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