Skip to content

Update dependency @babel/parser to v7.24.6 #975

Update dependency @babel/parser to v7.24.6

Update dependency @babel/parser to v7.24.6 #975

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
platform:
- ubuntu-latest
- windows-latest
node-version:
- 16.x
- 14.x
- 12.x
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
# Pulling caches itself it expensive. Which one is faster?
# - name: Get yarn cache
# id: yarn-cache
# run: echo "::set-output name=dir::$(yarn cache dir)"
# - uses: actions/cache@v1
# with:
# path: ${{ steps.yarn-cache.outputs.dir }}
# key: ${{ runner.os }}-yarn-${{ hashFiles('package.json') }}
# restore-keys: |
# ${{ runner.os }}-yarn-
- name: yarn install, lint, and test
run: |
yarn install --ignore-scripts
yarn build
yarn test
env:
CI: true
TOKEN: ${{ secrets.TOKEN }}