Bump tailwindcss from 3.4.3 to 3.4.9 #73
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Depencency in pull request | |
on: pull_request | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true # runs 'bundle install' and caches installed gems automatically | |
ruby-version: .ruby-version # uses the Ruby version specified in the .ruby-version file | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: .nvmrc # uses the Node.js version specified in the .nvmrc file | |
cache: 'npm' # enables caching of npm dependencies | |
- run: npm ci | |
- name: Build site for production | |
run: npm run build:production | |