Bump rollup from 3.25.2 to 3.29.5 #935
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
# This is a basic workflow to help you get started with Actions | |
name: Validate Pull Request | |
# Controls when the action will run. | |
on: | |
pull_request: | |
types: ['opened', 'edited', 'synchronize'] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
tests: | |
name: 'Tests' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.npm | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- run: npm ci --legacy-peer-deps | |
- run: npm run lint | |
- run: npm run test | |
- name: ASCT+B API Tests | |
run: | | |
npm ci --legacy-peer-deps | |
npm run lint | |
working-directory: asctb-api |