chore(deps): bump @babel/traverse from 7.22.10 to 7.23.2 #21
Workflow file for this run
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
# This script will run tests anytime a pull request is added | |
name: Session Test | |
on: | |
pull_request: | |
branches: | |
- clearnet | |
- unstable | |
- unstable1 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-2022, macos-11, ubuntu-20.04] | |
env: | |
SIGNAL_ENV: production | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- run: git config --global core.autocrlf false | |
- name: Checkout git repo | |
uses: actions/checkout@v3 | |
- uses: ./actions/setup_and_build | |
- name: Lint Files | |
# no need to lint files on all platforms. Just do it once on the quicker one | |
if: runner.os == 'Linux' | |
run: yarn lint-full | |
- name: Unit Test | |
run: yarn test |