build(deps-dev): bump @babel/traverse from 7.22.11 to 7.23.2 in /src #21
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: Validate | |
on: | |
push: | |
branches: | |
- "**" | |
- "!main" | |
paths: | |
- .github/workflows/**.yaml | |
- src/** | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup NodeJs | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- name: Test | |
run: | | |
cd "${GITHUB_WORKSPACE}/src" | |
npm install | |
npm run lint | |
npm run test | |
- name: Create Calendar | |
run: | | |
cd "${GITHUB_WORKSPACE}/src" | |
npm run execute | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: calendars | |
path: src/dist/* |