Skip to content

chore: add ci workflow #4

chore: add ci workflow

chore: add ci workflow #4

Workflow file for this run

name: test
on:
push:
branches: [master]
pull_request:
env:
FOUNDRY_PROFILE: ci
jobs:
yarn-ci:
runs-on: ubuntu-latest
steps:

Check failure on line 13 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 13
- name: 'Setup Node.js'
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'yarn'
- name: 'Install'
run: yarn install
- name: 'Build'
run: yarn build
- name: 'Lint'
run: yarn lint
- name: 'Test'
run: yarn test