Skip to content

Bump tar from 6.1.15 to 6.2.1 #224

Bump tar from 6.1.15 to 6.2.1

Bump tar from 6.1.15 to 6.2.1 #224

Workflow file for this run

name: Build
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18
uses: actions/setup-node@v2
with:
node-version: "18"
- name: Setup Yarn v3
run: |
corepack enable
corepack prepare yarn@stable --activate
- name: Install dependencies
run: yarn install --immutable
- name: Build
run: yarn run build
- name: Lint
run: yarn run lint
- name: Test
run: yarn run test