Skip to content

chore: @types/node 설치 #9

chore: @types/node 설치

chore: @types/node 설치 #9

Workflow file for this run

name: Deploy
on:
push:
branches: ['nlom0218-step1']
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- id: cache
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
echo "MOVIE_API_KEY=$MOVIE_API_KEY" >> .env

Check failure on line 30 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

You have an error in your yaml syntax on line 30
env:
API_KEY: ${{ secrets.MOVIE_API_KEY }}
- run: npm ci
if: steps.cache.outputs.cache-hit != 'true'
- run: npm run build
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist