Skip to content

chore(tag): bump version to 1.18.0 #40

chore(tag): bump version to 1.18.0

chore(tag): bump version to 1.18.0 #40

Workflow file for this run

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