Bump globals from 15.2.0 to 15.3.0 (#1168) #75
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: Sample List Generator | |
on: | |
push: | |
branches: | |
- main | |
defaults: | |
run: | |
working-directory: ./.repo/sample-list-generator | |
jobs: | |
generate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: npm install | |
- name: Generate sample list | |
run: npm run start | |
- name: Upload to artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: extension-samples.json | |
path: ./.repo/sample-list-generator/extension-samples.json | |
if-no-files-found: error |