Skip to content

build(deps-dev): bump @types/node from 20.4.9 to 20.5.0 #863

build(deps-dev): bump @types/node from 20.4.9 to 20.5.0

build(deps-dev): bump @types/node from 20.4.9 to 20.5.0 #863

Workflow file for this run

name: CI
on: push
jobs:
php:
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
strategy:
matrix:
node: ['18']
steps:
- name: Checkout the project
uses: actions/checkout@v2
- name: Setup the Node ${{ matrix.node }} environment on ${{ runner.os }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Restore the Yarn cache directory
id: yarncache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
with:
path: ${{ steps.yarncache.outputs.dir }}
key: ${{ runner.os }}-${{ matrix.node }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: ${{ runner.os }}-${{ matrix.node }}-yarn-
- name: Install dependencies using Yarn
run: yarn install --frozen-lockfile
- name: Test package
run: yarn run test