Bump @babel/traverse from 7.21.3 to 7.26.3 #45
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
# create workflow that will validate pull request compilation and run tests | |
# create workflow that will validate pull request compilation and run tests | |
name: Validate pull request | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
ci-build: | |
name: Build and test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# setup node and cache node modules | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Build | |
run: npm run all | |
- name: Test | |
run: npm run test |