This repository was archived by the owner on Oct 25, 2024. It is now read-only.
Prevent security issues from preload media option (#154) #128
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 16 | |
- name: install, build, test | |
run: | | |
yarn --frozen-lockfile | |
yarn build | |
yarn test | |
env: | |
CI: true |