Skip to content

chore(deps): bump tar from 6.1.11 to 6.2.1 (#961) #299

chore(deps): bump tar from 6.1.11 to 6.2.1 (#961)

chore(deps): bump tar from 6.1.11 to 6.2.1 (#961) #299

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Tests
on:
pull_request:
branches:
- master
push:
branches:
- master
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: npm run build --if-present
# - run: npm test TODO: Enable tests again