fix: Typo in github URL for dart previews #10
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: Pull request | |
on: pull_request | |
env: | |
FIGMA_ACCESS_TOKEN: ${{secrets.FIGMA_PERSONAL_ACCESS_TOKEN}} | |
jobs: | |
compile_js_modules: | |
name: Compile JS Modules | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
registry-url: "https://registry.npmjs.org" | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{github.head_ref}} | |
- name: Install packages | |
run: npm ci | |
- name: Run tests | |
run: npm run test |