chore(deps): bump ip from 2.0.0 to 2.0.1 in /landing (#418) #14
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: Testing Landing | |
on: | |
pull_request: | |
branches: | |
- master | |
- main | |
paths: | |
- "landing/**" | |
push: | |
branches: | |
- master | |
- main | |
paths: | |
- "landing/**" | |
jobs: | |
dependencies: | |
name: "install dependencies" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout under $GITHUB_WORKSPACE" | |
uses: "actions/checkout@v4" | |
- name: "Set up NodeJS" | |
uses: "actions/setup-node@v4" | |
with: | |
node-version: 20 | |
- name: "install dependencies" | |
run: yarn --cwd=landing install | |
- name: "Cache files" | |
uses: "actions/cache@master" | |
id: "main-files" | |
with: | |
path: "./" | |
key: "${{ github.sha }}" | |
test: | |
name: test | |
needs: dependencies | |
if: ${{ success() }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: "Restore cache files" | |
uses: "actions/cache@v4" | |
id: "main-files" | |
with: | |
path: "./" | |
key: "${{ github.sha }}" | |
- name: "running tests" | |
run: yarn --cwd=landing test |