Skip to content

Bump vm2 from 3.9.14 to 3.9.19 #632

Bump vm2 from 3.9.14 to 3.9.19

Bump vm2 from 3.9.14 to 3.9.19 #632

Workflow file for this run

name: TS Action
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies on ACT
if: ${{ env.ACT }}
run: |
npm i -g yarn
sudo apt-get update
- name: Install dependencies on Ubuntu
run: yarn install --frozen-lockfile
- name: tsc
uses: icrawl/action-tsc@v1