Update LICENSE.md to change licenses to Apache 2.0 from BSL #859
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2022 by LunaSec (owned by Refinery Labs, Inc) | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, | |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
# See the License for the specific language governing permissions and | |
# limitations under the License. | |
# | |
name: LunaTrace Unit Test | |
# This workflow checks to make sure that all dependency binaries are valid, to prevent a sneaky commit doing something malicious | |
on: | |
pull_request: | |
branches: ['**', '**'] | |
paths: | |
- 'lunatrace/**' | |
- 'package.json' | |
- '.github/**' | |
push: | |
branches: [master] | |
jobs: | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
cache: 'yarn' | |
- name: Yarn Install | |
run: yarn install | |
- run: yarn run compile:bsl | |
- name: backend-tests | |
working-directory: 'lunatrace/bsl/backend' | |
run: yarn run test --verbose | |
- name: logger-tests | |
working-directory: 'lunatrace/bsl/logger' | |
run: yarn run test --verbose |