This repository has been archived by the owner on May 28, 2024. It is now read-only.
Bump aws-sdk from 2.1354.0 to 2.1418.0 #6976
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: Eleventy PR Validation | |
on: | |
pull_request: | |
branches: [ master, hellofastcharts, preproduction, dependabotprs ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build 11ty | |
run: | | |
npm install | |
npm run build | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: npm test | |
run: | | |
npm run test:setup | |
npm test | |
env: | |
CI: true |