From 0e5a22e7a7185dea54d0f86c539dfdc53af7e449 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Kuna?= <1282324+codecalm@users.noreply.github.com> Date: Sat, 30 Nov 2019 16:46:05 +0100 Subject: [PATCH] Update test.yml --- .github/workflows/test.yml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aa96cc3f5..907ef3d9e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,8 +23,22 @@ jobs: - name: Set Ruby version uses: actions/setup-ruby@v1 with: - ruby-version: '2.x' + ruby-version: '2.4.x' + - name: Set up Bundler + run: gem install bundler -v "~> 1.17" + + - run: ruby --version + - run: gem --version + - run: bundle --version - run: node --version - run: npm --version - - run: ruby -version + + - name: Install npm dependencies + run: npm install + + - name: Install bundler dependencies + run: bundle install --deployment --jobs=3 --retry=3 --clean + + - name: Run bundlesize + run: npm run bundlesize